From 78860953422b9aa7e4eb0561189136e75284a1a2 Mon Sep 17 00:00:00 2001 From: fullsizemalt <106900403+fullsizemalt@users.noreply.github.com> Date: Mon, 29 Dec 2025 00:08:33 -0800 Subject: [PATCH] fix: Default to Billy Strings (populated) instead of Goose --- frontend/app/page.tsx | 2 +- frontend/config/verticals.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/app/page.tsx b/frontend/app/page.tsx index 4324e43..dbd5b30 100644 --- a/frontend/app/page.tsx +++ b/frontend/app/page.tsx @@ -56,7 +56,7 @@ export default async function HomePage() { Get Started diff --git a/frontend/config/verticals.ts b/frontend/config/verticals.ts index a118d73..f7193b9 100644 --- a/frontend/config/verticals.ts +++ b/frontend/config/verticals.ts @@ -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"]