espace-paie-odentas/app/(app)/minima-ccn/ccneac/page.tsx
2025-10-17 13:02:39 +02:00

69 lines
2.6 KiB
TypeScript

"use client";
import React from 'react';
import { usePageTitle } from '@/hooks/usePageTitle';
import Link from 'next/link';
import { ArrowLeft, Scale } from 'lucide-react';
export default function CCNEACPage() {
usePageTitle("Minima CCNEAC");
return (
<div className="space-y-6">
{/* Navigation retour */}
<Link
href="/minima-ccn"
className="inline-flex items-center gap-2 text-sm text-slate-600 hover:text-slate-900 transition-colors"
>
<ArrowLeft className="w-4 h-4" />
Retour aux minima CCN
</Link>
{/* En-tête */}
<section className="rounded-2xl border bg-white p-6">
<div className="flex items-start gap-3">
<div className="flex-shrink-0 w-12 h-12 rounded-xl bg-gradient-to-br from-indigo-500 to-purple-600 flex items-center justify-center">
<Scale className="w-6 h-6 text-white" />
</div>
<div className="flex-1 min-w-0">
<div className="flex items-center gap-2 mb-2">
<h1 className="text-2xl font-semibold text-slate-900">CCNEAC (IDCC 1285)</h1>
<span className="inline-flex items-center px-2.5 py-1 rounded-full text-xs font-semibold bg-gradient-to-r from-emerald-500 to-emerald-600 text-white shadow-sm">
À jour 2025
</span>
</div>
<p className="text-sm text-slate-600">
Spectacle vivant subventionné - Minima techniciens, artistes et personnels administratifs et commerciaux
</p>
</div>
</div>
</section>
{/* Contenu à venir */}
<section className="rounded-2xl border bg-white p-8">
<div className="text-center max-w-2xl mx-auto">
<div className="w-16 h-16 mx-auto mb-4 rounded-full bg-slate-100 flex items-center justify-center">
<svg
viewBox="0 0 24 24"
width="32"
height="32"
fill="none"
stroke="currentColor"
strokeWidth="1.6"
className="text-slate-400"
>
<path d="M3 5c0 7 3 10 9 10s9-3 9-10V3H3v2Z"/>
<path d="M9 10h.01M15 10h.01M8 13c1.2.8 2.8 1.2 4 1.2s2.8-.4 4-1.2"/>
</svg>
</div>
<h2 className="text-xl font-semibold text-slate-900 mb-2">
Tableaux des minima en cours d'intégration
</h2>
<p className="text-sm text-slate-600">
Les tableaux interactifs des minima CCNEAC seront disponibles prochainement.
</p>
</div>
</section>
</div>
);
}