22 lines
1023 B
TypeScript
22 lines
1023 B
TypeScript
// SoinsSante.tsx
|
|
import { useState } from 'react';
|
|
import { AppSidebar } from '../components/AppSidebar';
|
|
import { ComingSoon } from '../components/ComingSoon';
|
|
import { Stethoscope } from 'lucide-react';
|
|
|
|
export default function SoinsSante() {
|
|
const [collapsed, setCollapsed] = useState(false);
|
|
return (
|
|
<div className="min-h-screen flex bg-background">
|
|
<AppSidebar collapsed={collapsed} onToggle={() => setCollapsed(c => !c)} />
|
|
<main className="flex-1 flex flex-col min-w-0">
|
|
<header className="bg-card border-b border-border px-6 py-4 flex-shrink-0">
|
|
<h1 className="text-xl font-bold text-foreground" style={{ fontFamily: 'Sora, sans-serif' }}>Soins et Santé</h1>
|
|
<p className="text-sm text-muted-foreground mt-0.5">Budget SI 2027 — Périmètre Soins et Santé</p>
|
|
</header>
|
|
<ComingSoon title="Soins et Santé" subtitle="Le budget SI du périmètre Soins et Santé sera disponible prochainement." icon={Stethoscope} />
|
|
</main>
|
|
</div>
|
|
);
|
|
}
|