134 lines
2.2 KiB
TypeScript
134 lines
2.2 KiB
TypeScript
export type SiteConfig = typeof siteConfig;
|
|
|
|
export const siteConfig = {
|
|
name: "DIVISI HUMAS POLRI - Pengelola Informasi dan Dokumentasi Polri",
|
|
description: "DIVISI HUMAS POLRI - Pengelola Informasi dan Dokumentasi Polri.",
|
|
navItems: [
|
|
{
|
|
label: "Home",
|
|
href: "/",
|
|
},
|
|
{
|
|
label: "Docs",
|
|
href: "/docs",
|
|
},
|
|
{
|
|
label: "Pricing",
|
|
href: "/pricing",
|
|
},
|
|
{
|
|
label: "Blog",
|
|
href: "/blog",
|
|
},
|
|
{
|
|
label: "About",
|
|
href: "/about",
|
|
}
|
|
],
|
|
humasMenuItems: [
|
|
{
|
|
key: "home",
|
|
label: "Beranda",
|
|
href: "/",
|
|
},
|
|
{
|
|
key: "about",
|
|
label: "Tentang",
|
|
submenu: [
|
|
{
|
|
label: "Tentang Humas POLRI",
|
|
href: "/tentang-humas-polri"
|
|
},
|
|
{
|
|
label: "Profile Pimpinan POLRI",
|
|
href: "/visi-misi"
|
|
},
|
|
{
|
|
label: "Struktur Organisasi",
|
|
href: "/struktur-organisasi"
|
|
},
|
|
{
|
|
label: "Visi dan Misi",
|
|
href: "/visi-misi"
|
|
},
|
|
{
|
|
label: "Tugas dan Fungsi",
|
|
href: "/tugas-dan-fungsi"
|
|
},
|
|
{
|
|
label: "Logo",
|
|
href: "#"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
key: "ppid",
|
|
label: "Portal PPID",
|
|
href: "/portal-ppid",
|
|
},
|
|
{
|
|
key: "service",
|
|
label: "Pelayanan Masyarakat",
|
|
submenu: [
|
|
{
|
|
label: "Formulir Permohonan Informasi",
|
|
href: "/form-permohonan-informasi"
|
|
},
|
|
{
|
|
label: "Pelayanan SIM",
|
|
href: "/visi-misi"
|
|
},
|
|
{
|
|
label: "Pelayanan e-Rikkes SIM",
|
|
href: "/struktur-organisasi"
|
|
},
|
|
{
|
|
label: "Pelayanan Tes Psikologi SIM",
|
|
href: "/visi-misi"
|
|
},
|
|
{
|
|
label: "Pelayanan e-Avis",
|
|
href: "/tugas-dan-fungsi"
|
|
},
|
|
{
|
|
label: "Pelayanan Samsat Digital",
|
|
href: "#"
|
|
},
|
|
{
|
|
label: "Pelayanan SKCK",
|
|
href: "#"
|
|
},
|
|
{
|
|
label: "Pelayanan Propam Presisi",
|
|
href: "#"
|
|
},
|
|
{
|
|
label: "Pelayanan Dumas Presisi",
|
|
href: "#"
|
|
},
|
|
{
|
|
label: "Pelayanan Binmas",
|
|
href: "#"
|
|
},
|
|
{
|
|
label: "Wistle Blower System",
|
|
href: "#"
|
|
},
|
|
]
|
|
},
|
|
{
|
|
key: "contact",
|
|
label: "Kontak",
|
|
href: "/kontak-kami",
|
|
},
|
|
],
|
|
|
|
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"
|
|
},
|
|
};
|