import { notFound } from "next/navigation" import { VERTICALS } from "@/contexts/vertical-context" interface Props { params: { vertical: string } } export function generateStaticParams() { return VERTICALS.map((v) => ({ vertical: v.slug, })) } export default function VerticalPage({ params }: Props) { const vertical = VERTICALS.find((v) => v.slug === params.vertical) if (!vertical) { notFound() } return (

{vertical.name}

Explore setlists, rate performances, and connect with the {vertical.name} community.

Shows

Browse all concerts and setlists

Songs

Explore the catalog and stats

Venues

See where they've played

) }