mirror of
https://github.com/arthur-pbty/contact.git
synced 2026-06-03 15:07:21 +02:00
f63eeb2e84
- Implemented a contact page with a form for user inquiries. - Added validation for form fields using Zod schema. - Integrated PostgreSQL database for storing contact messages. - Created necessary API endpoints for form submission. - Added admin authentication and session management. - Developed CGU, cookies policy, privacy policy, and legal mentions pages. - Set up Docker configuration for PostgreSQL and application services. - Enhanced UI with responsive design and accessibility features.
25 lines
1.2 KiB
TypeScript
25 lines
1.2 KiB
TypeScript
export default function MentionsLegalesPage() {
|
|
return (
|
|
<main className="mx-auto max-w-3xl space-y-6 px-4 py-10 text-sm leading-relaxed text-slate-700 dark:text-slate-300">
|
|
<h1 className="text-3xl font-semibold text-slate-900 dark:text-white">Mentions legales</h1>
|
|
<section className="space-y-2">
|
|
<h2 className="text-lg font-semibold text-slate-900 dark:text-white">Editeur</h2>
|
|
<p>ArthurP - Developpeur web & homelab</p>
|
|
<p>Email: contact@arthurp.fr</p>
|
|
</section>
|
|
<section className="space-y-2">
|
|
<h2 className="text-lg font-semibold text-slate-900 dark:text-white">Hebergement</h2>
|
|
<p>Site auto-heberge sur infrastructure personnelle (Proxmox).</p>
|
|
</section>
|
|
<section className="space-y-2">
|
|
<h2 className="text-lg font-semibold text-slate-900 dark:text-white">Propriete intellectuelle</h2>
|
|
<p>Les contenus, marques et elements visuels restent la propriete de leurs auteurs respectifs.</p>
|
|
</section>
|
|
<section className="space-y-2">
|
|
<h2 className="text-lg font-semibold text-slate-900 dark:text-white">Contact</h2>
|
|
<p>Pour toute question legale: contact@arthurp.fr</p>
|
|
</section>
|
|
</main>
|
|
);
|
|
}
|