145 lines
3.2 KiB
TypeScript
145 lines
3.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: "/profile-pimpinan-polri",
|
|
},
|
|
{
|
|
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: "https://www.digitalkorlantas.id/sim/",
|
|
},
|
|
{
|
|
label: "Pelayanan e-Rikkes SIM",
|
|
href: "https://erikkes.id/",
|
|
},
|
|
{
|
|
label: "Pelayanan Tes Psikologi SIM",
|
|
href: "https://eppsi.id/",
|
|
},
|
|
{
|
|
label: "Pelayanan e-Avis",
|
|
href: "https://e-avis.korlantas.polri.go.id/",
|
|
},
|
|
{
|
|
label: "Pelayanan Samsat Digital",
|
|
href: "https://samsatdigital.id/",
|
|
},
|
|
{
|
|
label: "Pelayanan SKCK",
|
|
href: "https://play.google.com/store/apps/details?id=superapps.polri.presisi.presisi&hl=en_US",
|
|
},
|
|
{
|
|
label: "Pelayanan Propam Presisi",
|
|
href: "https://play.google.com/store/apps/details?id=com.stk.pengaduanpropam",
|
|
},
|
|
{
|
|
label: "Pelayanan Dumas Presisi",
|
|
href: "https://dumaspresisi.polri.go.id/",
|
|
},
|
|
{
|
|
label: "Pelayanan Binmas",
|
|
href: "https://bos.polri.go.id/login",
|
|
},
|
|
{
|
|
label: "Wistle Blower System",
|
|
href: "https://play.google.com/store/apps/details?id=id.go.ssdmpolri.pengaduanappsbarupolri2",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: "contact",
|
|
label: "Kontak",
|
|
href: "/kontak-kami",
|
|
},
|
|
{
|
|
key: "dashboard",
|
|
label: "Dashboard",
|
|
href: "/admin",
|
|
},
|
|
{
|
|
key: "login",
|
|
label: "Login",
|
|
href: "/auth",
|
|
},
|
|
],
|
|
|
|
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",
|
|
},
|
|
};
|