web-humas-fe/config/site.ts

46 lines
820 B
TypeScript
Raw Normal View History

2024-01-05 06:57:30 +00:00
export type SiteConfig = typeof siteConfig;
export const siteConfig = {
2024-01-17 10:19:02 +00:00
name: "Aminbersatu.com",
2024-01-05 06:57:30 +00:00
description: "Make beautiful websites regardless of your design experience.",
navItems: [
{
2024-01-09 06:24:58 +00:00
label: "Giat Sepekan",
2024-01-05 06:57:30 +00:00
href: "/",
},
2024-01-09 06:24:58 +00:00
{
label: "Lapor Kampanye",
2024-01-10 13:07:12 +00:00
href: "/report",
2024-01-09 06:24:58 +00:00
},
{
label: "Update TPS",
2024-01-17 10:19:02 +00:00
href: "#",
2024-01-09 06:24:58 +00:00
},
// {
// label: "Blog",
// href: "/blog",
// },
// {
// label: "About",
// href: "/about",
// }
2024-01-05 06:57:30 +00:00
],
navMenuItems: [
{
2024-01-11 09:36:00 +00:00
label: "Giat Sepekan",
href: "/",
2024-01-05 06:57:30 +00:00
},
{
2024-01-11 09:36:00 +00:00
label: "Lapor Kampanye",
href: "/report",
2024-01-05 06:57:30 +00:00
},
],
links: {
github: "https://github.com/nextui-org/nextui",
twitter: "https://twitter.com/getnextui",
docs: "https://nextui.org",
discord: "https://discord.gg/9b6yyZKmH4",
2024-01-09 06:24:58 +00:00
sponsor: "https://patreon.com/jrgarciadev"
2024-01-05 06:57:30 +00:00
},
};