fediversion/frontend/config/verticals.ts
fullsizemalt 7886095342
Some checks failed
Deploy Fediversion / deploy (push) Failing after 1s
fix: Default to Billy Strings (populated) instead of Goose
2025-12-29 00:08:33 -08:00

14 lines
412 B
TypeScript

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