diff --git a/app/components/layout/AppSidebar.vue b/app/components/layout/AppSidebar.vue
index 70a45eb9..5aca2539 100644
--- a/app/components/layout/AppSidebar.vue
+++ b/app/components/layout/AppSidebar.vue
@@ -4,15 +4,57 @@ const navMenu: any[] = [
heading: 'Menu Utama',
items: [
{
- title: 'Home',
+ title: 'Dashboard',
icon: 'i-lucide-home',
link: '/',
},
{
title: 'Pasien',
- icon: 'i-lucide-home',
+ icon: 'i-lucide-users',
link: '/patient',
},
+ {
+ title: 'Rehabilitasi Medik',
+ icon: 'i-lucide-heart',
+ link: '/rehabilitasi',
+ },
+ {
+ title: 'Rawat Jalan',
+ icon: 'i-lucide-stethoscope',
+ link: '/rawat-jalan',
+ },
+ {
+ title: 'Rawat Inap',
+ icon: 'i-lucide-building-2',
+ link: '/rawat-inap',
+ },
+ {
+ title: 'VClaim BPJS',
+ icon: 'i-lucide-refresh-cw',
+ link: '/vclaim',
+ badge: 'Live',
+ },
+ {
+ title: 'SATUSEHAT',
+ icon: 'i-lucide-database',
+ link: '/satusehat',
+ badge: 'FHIR',
+ },
+ {
+ title: 'Medical Records',
+ icon: 'i-lucide-file-text',
+ link: '/medical-records',
+ },
+ {
+ title: 'Laporan',
+ icon: 'i-lucide-clipboard-list',
+ link: '/laporan',
+ },
+ {
+ title: 'Monitoring',
+ icon: 'i-lucide-bar-chart-3',
+ link: '/monitoring',
+ },
],
},
]
@@ -43,15 +85,15 @@ const teams: {
},
]
-const user: {
- name: string
- email: string
- avatar: string
-} = {
- name: 'John Doe',
- email: 'john.doe@email.com',
- avatar: '/avatars/avatartion.png',
-}
+// const user: {
+// name: string
+// email: string
+// avatar: string
+// } = {
+// name: '',
+// email: '',
+// avatar: '/',
+// }
// const { sidebar } = useAppSettings()
const sidebar = {
@@ -72,7 +114,13 @@ const sidebar = {
{{ nav.heading }}
-
+
-
+
diff --git a/app/components/layout/Auth.vue b/app/components/layout/Auth.vue
index 6194d479..7ead292a 100644
--- a/app/components/layout/Auth.vue
+++ b/app/components/layout/Auth.vue
@@ -6,7 +6,7 @@ defineProps<{