14 lines
412 B
TypeScript
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
|
|
}
|