chore(strip): verwijder placeholder-pagina's dashboard en reports

Beide waren lege placeholders ('Epic 1 - Placeholder', 'Not designed yet').
Sidebar-items eruit; login-tests gebruiken /epd/agenda als voorbeeld van
een beveiligde route.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
colinislit
2026-07-14 22:49:40 +02:00
parent 96848ecc81
commit 38dd7c1f8a
6 changed files with 3 additions and 60 deletions

View File

@@ -5,7 +5,6 @@ import { usePathname } from 'next/navigation';
import { cn } from '@/lib/utils';
import {
Users,
Settings,
LogOut,
Menu,
X,
@@ -46,7 +45,6 @@ interface EPDSidebarProps {
// LEVEL 1: Behandelaar Context Navigation
const level1NavigationItems: NavigationItem[] = [
{ id: "cortex", name: "Cortex", icon: Zap, href: "/epd/cortex" },
{ id: "dashboard", name: "Dashboard", icon: LayoutDashboard, href: "/epd/dashboard" },
{ id: "clients", name: "Cliënten", icon: Users, href: "/epd/patients" },
{
id: "verpleegrapportage",
@@ -59,7 +57,6 @@ const level1NavigationItems: NavigationItem[] = [
]
},
{ id: "agenda", name: "Agenda", icon: FileText, href: "/epd/agenda" },
{ id: "reports", name: "Rapportage", icon: Settings, href: "/epd/reports" },
];
// LEVEL 2: Client Dossier Context Navigation (clientId gets injected)

View File

@@ -1,27 +0,0 @@
/**
* Behandelaar Dashboard - Level 1
*
* Overzicht van caseload, aandachtspunten, taken en recente activiteit.
*/
export default function DashboardPage() {
return (
<div>
<h1 className="text-2xl font-bold text-slate-900 mb-6">
Dashboard
</h1>
<div className="bg-slate-100 border-2 border-dashed border-slate-300 rounded-lg p-12 text-center">
<p className="text-slate-600 text-lg mb-2">
Behandelaar Dashboard
</p>
<p className="text-slate-500 text-sm">
Caseload overzicht, aandachtspunten en aankomende afspraken
</p>
<p className="text-xs text-slate-400 mt-4">
Epic 1 - Placeholder for future content
</p>
</div>
</div>
);
}

View File

@@ -1,27 +0,0 @@
/**
* Behandelaar Rapportage - Level 1
*
* BI dashboards, KPI's en statistieken.
*/
export default function ReportsPage() {
return (
<div>
<h1 className="text-2xl font-bold text-slate-900 mb-6">
Rapportage
</h1>
<div className="bg-slate-100 border-2 border-dashed border-slate-300 rounded-lg p-12 text-center">
<p className="text-slate-600 text-lg mb-2">
Behandelaar Rapportage
</p>
<p className="text-slate-500 text-sm">
BI dashboards, KPI&apos;s, trends en statistieken
</p>
<p className="text-xs text-slate-400 mt-4">
Placeholder - Not designed yet
</p>
</div>
</div>
);
}