web-humas-fe/config/site.ts

134 lines
2.6 KiB
TypeScript
Raw Permalink Normal View History

2024-01-05 06:57:30 +00:00
export type SiteConfig = typeof siteConfig;
export const siteConfig = {
2024-02-19 08:39:35 +00:00
name: "DIVISI HUMAS POLRI - Pengelola Informasi dan Dokumentasi Polri",
description: "DIVISI HUMAS POLRI - Pengelola Informasi dan Dokumentasi Polri.",
2024-01-05 06:57:30 +00:00
navItems: [
{
label: "Home",
href: "/",
},
2024-01-29 10:19:46 +00:00
{
label: "Docs",
href: "/docs",
},
{
label: "Pricing",
href: "/pricing",
},
{
label: "Blog",
href: "/blog",
},
{
label: "About",
href: "/about",
}
2024-01-05 06:57:30 +00:00
],
2024-03-27 12:23:07 +00:00
humasMenuItems: [
2024-01-05 06:57:30 +00:00
{
2024-03-27 12:23:07 +00:00
key: "home",
label: "Beranda",
href: "/",
2024-01-05 06:57:30 +00:00
},
{
2024-03-27 12:23:07 +00:00
key: "about",
label: "Tentang",
submenu: [
{
label: "Tentang Humas POLRI",
href: "/tentang-humas-polri"
},
{
label: "Profile Pimpinan POLRI",
2024-04-02 03:49:47 +00:00
href: "/profile-pimpinan-polri"
2024-03-27 12:23:07 +00:00
},
{
label: "Struktur Organisasi",
href: "/struktur-organisasi"
},
{
label: "Visi dan Misi",
href: "/visi-misi"
},
{
label: "Tugas dan Fungsi",
href: "/tugas-dan-fungsi"
},
{
label: "Logo",
href: "#"
}
]
2024-01-05 06:57:30 +00:00
},
{
2024-03-27 12:23:07 +00:00
key: "ppid",
label: "Portal PPID",
href: "/portal-ppid",
2024-01-05 06:57:30 +00:00
},
{
2024-03-27 12:23:07 +00:00
key: "service",
label: "Pelayanan Masyarakat",
submenu: [
{
label: "Formulir Permohonan Informasi",
href: "/form-permohonan-informasi"
},
{
label: "Pelayanan SIM",
2024-04-02 03:49:47 +00:00
href: "https://www.digitalkorlantas.id/sim/"
2024-03-27 12:23:07 +00:00
},
{
label: "Pelayanan e-Rikkes SIM",
2024-04-02 03:49:47 +00:00
href: "https://erikkes.id/"
2024-03-27 12:23:07 +00:00
},
{
label: "Pelayanan Tes Psikologi SIM",
2024-04-02 03:49:47 +00:00
href: "https://eppsi.id/"
2024-03-27 12:23:07 +00:00
},
{
label: "Pelayanan e-Avis",
2024-04-02 03:49:47 +00:00
href: "https://e-avis.korlantas.polri.go.id/"
2024-03-27 12:23:07 +00:00
},
{
label: "Pelayanan Samsat Digital",
2024-04-02 03:49:47 +00:00
href: "https://samsatdigital.id/"
2024-03-27 12:23:07 +00:00
},
{
label: "Pelayanan SKCK",
2024-04-02 03:49:47 +00:00
href: "https://play.google.com/store/apps/details?id=superapps.polri.presisi.presisi&hl=en_US"
2024-03-27 12:23:07 +00:00
},
{
label: "Pelayanan Propam Presisi",
2024-04-02 03:49:47 +00:00
href: "https://play.google.com/store/apps/details?id=com.stk.pengaduanpropam"
2024-03-27 12:23:07 +00:00
},
{
label: "Pelayanan Dumas Presisi",
2024-04-02 03:49:47 +00:00
href: "https://dumaspresisi.polri.go.id/"
2024-03-27 12:23:07 +00:00
},
{
label: "Pelayanan Binmas",
2024-04-02 03:49:47 +00:00
href: "https://bos.polri.go.id/login"
2024-03-27 12:23:07 +00:00
},
{
label: "Wistle Blower System",
2024-04-02 03:49:47 +00:00
href: "https://play.google.com/store/apps/details?id=id.go.ssdmpolri.pengaduanappsbarupolri2"
2024-03-27 12:23:07 +00:00
},
]
2024-01-05 06:57:30 +00:00
},
{
2024-03-27 12:23:07 +00:00
key: "contact",
label: "Kontak",
href: "/kontak-kami",
2024-01-05 06:57:30 +00:00
},
],
2024-03-27 12:23:07 +00:00
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-29 10:19:46 +00:00
sponsor: "https://patreon.com/jrgarciadev"
2024-01-05 06:57:30 +00:00
},
};