46 lines
825 B
TypeScript
46 lines
825 B
TypeScript
export type SiteConfig = typeof siteConfig;
|
|
|
|
export const siteConfig = {
|
|
name: "Next.js + NextUI",
|
|
description: "Make beautiful websites regardless of your design experience.",
|
|
navItems: [
|
|
{
|
|
label: "Giat Sepekan",
|
|
href: "/",
|
|
},
|
|
{
|
|
label: "Lapor Kampanye",
|
|
href: "/report",
|
|
},
|
|
{
|
|
label: "Update TPS",
|
|
href: "/docs",
|
|
},
|
|
// {
|
|
// label: "Blog",
|
|
// href: "/blog",
|
|
// },
|
|
// {
|
|
// label: "About",
|
|
// href: "/about",
|
|
// }
|
|
],
|
|
navMenuItems: [
|
|
{
|
|
label: "Giat Sepekan",
|
|
href: "/",
|
|
},
|
|
{
|
|
label: "Lapor Kampanye",
|
|
href: "/report",
|
|
},
|
|
],
|
|
links: {
|
|
github: "https://github.com/nextui-org/nextui",
|
|
twitter: "https://twitter.com/getnextui",
|
|
docs: "https://nextui.org",
|
|
discord: "https://discord.gg/9b6yyZKmH4",
|
|
sponsor: "https://patreon.com/jrgarciadev"
|
|
},
|
|
};
|