Chrysoblog/src/lib/sitemap.ts

7 lines
240 B
TypeScript
Raw Normal View History

2024-09-16 21:33:02 -07:00
export const routes: { route: string, name: string, inactive?: boolean }[] = [
{ route: "/", name: "Home" },
{ route: "/post", name: "Blog" },
{ route: "/art", name: "Art", inactive: true },
{ route: "/archives", name: "Archives" },
];