fix: Default to Billy Strings (populated) instead of Goose
Some checks failed
Deploy Fediversion / deploy (push) Failing after 1s

This commit is contained in:
fullsizemalt 2025-12-29 00:08:33 -08:00
parent 5b8cfffcf9
commit 7886095342
2 changed files with 3 additions and 3 deletions

View file

@ -56,7 +56,7 @@ export default async function HomePage() {
<Link href="/onboarding">Get Started</Link>
</Button>
<Button asChild variant="outline" size="lg">
<Link href="/goose">Explore Shows</Link>
<Link href="/billy-strings">Explore Shows</Link>
</Button>
</div>
</section>

View file

@ -1,9 +1,9 @@
export const VERTICALS = [
{ slug: "billy-strings", name: "Billy Strings" },
{ slug: "phish", name: "Phish" },
{ slug: "goose", name: "Goose" },
{ slug: "grateful-dead", name: "Grateful Dead" },
{ slug: "dead-and-company", name: "Dead & Company" },
{ slug: "billy-strings", name: "Billy Strings" },
{ slug: "goose", name: "Goose" },
] as const
export type VerticalSlug = typeof VERTICALS[number]["slug"]