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 (
Explore setlists, rate performances, and connect with the {vertical.name} community.