Files
wr.do/config/blog.ts
2024-07-26 22:08:57 +08:00

30 lines
596 B
TypeScript

export const BLOG_CATEGORIES: {
title: string;
slug: "news" | "education";
description: string;
}[] = [
{
title: "News",
slug: "news",
description: "Updates and announcements from Next Template.",
},
{
title: "Education",
slug: "education",
description: "Educational content about template management.",
},
];
export const BLOG_AUTHORS = {
mickasmt: {
name: "mickasmt",
image: "/_static/avatars/mickasmt.png",
twitter: "miickasmt",
},
shadcn: {
name: "shadcn",
image: "/_static/avatars/shadcn.jpeg",
twitter: "shadcn",
},
};