30 lines
596 B
TypeScript
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",
|
|
},
|
|
};
|