deechael.net/config/site.ts

72 lines
1.3 KiB
TypeScript
Raw Normal View History

2024-09-18 22:54:40 +08:00
export type SiteConfig = typeof siteConfig;
export const siteConfig = {
name: "Next.js + NextUI",
description: "Make beautiful websites regardless of your design experience.",
navItems: [
{
label: "Home",
href: "/",
},
{
label: "Docs",
href: "/docs",
},
{
label: "Pricing",
href: "/pricing",
},
{
label: "Blog",
href: "/blog",
},
{
label: "About",
href: "/about",
},
],
navMenuItems: [
{
label: "Profile",
href: "/profile",
},
{
label: "Dashboard",
href: "/dashboard",
},
{
label: "Projects",
href: "/projects",
},
{
label: "Team",
href: "/team",
},
{
label: "Calendar",
href: "/calendar",
},
{
label: "Settings",
href: "/settings",
},
{
label: "Help & Feedback",
href: "/help-feedback",
},
{
label: "Logout",
href: "/logout",
},
],
links: {
github: "https://github.com/DeeChael",
2024-09-20 21:09:48 +08:00
bilibili: "https://space.bilibili.com/197734515",
2024-09-18 22:54:40 +08:00
twitter: "https://x.com/DeerioChaelingo",
2024-09-20 21:09:48 +08:00
modrinth: "https://modrinth.com/user/DeeChael",
2024-09-18 22:54:40 +08:00
maven: "https://maven.deechael.net",
gitea: "https://git.deechael.net",
2024-09-19 21:02:04 +08:00
alist: "https://files.deechael.net",
2024-09-18 22:54:40 +08:00
},
};