deechael.net/config/site.ts

72 lines
1.3 KiB
TypeScript

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",
bilibili: "https://space.bilibili.com/197734515",
twitter: "https://x.com/DeerioChaelingo",
modrinth: "https://modrinth.com/user/DeeChael",
maven: "https://maven.deechael.net",
gitea: "https://git.deechael.net",
alist: "https://files.deechael.net",
},
};