fediversion/frontend/config/verticals.ts
fullsizemalt 9e927c114e
Some checks failed
Deploy Fediversion / deploy (push) Failing after 1s
fix: refactor VERTICALS constant to config file to fix server build
2025-12-28 21:26:08 -08:00

14 lines
412 B
TypeScript

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