mirror of
https://github.com/arthur-pbty/calculatrice.git
synced 2026-06-03 23:36:29 +02:00
8400e26c0a
- Refactored Dockerfile for improved multi-stage builds and added development and production configurations. - Updated README with clearer project description, local development instructions, and added contact information. - Enhanced Calculator component to manage theme and history using localStorage, improving user experience. - Added new pages for legal mentions and privacy policy, including relevant metadata. - Updated docker-compose.yml for better service management and added environment variables. - Introduced a new LICENSE file outlining usage rights and responsibilities.
35 lines
1.2 KiB
TypeScript
35 lines
1.2 KiB
TypeScript
import type { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Mentions legales",
|
|
description: "Mentions legales du site calculatrice.arthurp.fr",
|
|
};
|
|
|
|
export default function MentionsLegalesPage() {
|
|
return (
|
|
<main className="min-h-screen px-4 py-12 sm:px-8">
|
|
<div className="mx-auto w-full max-w-3xl rounded-2xl border p-6 sm:p-8" style={{ background: "var(--surface)", borderColor: "var(--border-color)" }}>
|
|
<h1 className="text-2xl font-bold sm:text-3xl">Mentions legales</h1>
|
|
|
|
<section className="mt-6 space-y-3 text-sm leading-relaxed" style={{ color: "var(--muted)" }}>
|
|
<p>
|
|
Site: calculatrice.arthurp.fr
|
|
</p>
|
|
<p>
|
|
Proprietaire et editeur: Arthur P.
|
|
</p>
|
|
<p>
|
|
Contact principal: <a href="https://contact.arthurp.fr" className="hover:underline">contact.arthurp.fr</a>
|
|
</p>
|
|
<p>
|
|
Email: <a href="mailto:contact@arthurp.fr" className="hover:underline">contact@arthurp.fr</a>
|
|
</p>
|
|
<p>
|
|
Hebergement: infrastructure auto-hebergee sur Proxmox.
|
|
</p>
|
|
</section>
|
|
</div>
|
|
</main>
|
|
);
|
|
}
|