17 lines
278 B
TypeScript
17 lines
278 B
TypeScript
export const CATEGORIES = [
|
|
"Interior",
|
|
"Exterior",
|
|
"Lighting",
|
|
"Audio",
|
|
"Tools",
|
|
"Suspension",
|
|
"Performance",
|
|
"Drivetrain",
|
|
] as const;
|
|
|
|
export type Category = typeof CATEGORIES[number];
|
|
|
|
export function slugifyCategory(c: string) {
|
|
return c.toLowerCase();
|
|
}
|