- Suppression de toute la partie admin (routes, composants, API) - Suppression du WiFi et du numéro de bungalow - Simplification de l'accueil (logo, météo, message statique) - App 100% statique maintenant - Redirection simple vers /accueil - Nettoyage des hooks et types inutilisés
42 lines
1.2 KiB
TypeScript
42 lines
1.2 KiB
TypeScript
"use client";
|
|
|
|
import dynamic from "next/dynamic";
|
|
import Layout from "@/components/layout/Layout";
|
|
import Logo from "@/components/Logo";
|
|
import { config } from "@/lib/config";
|
|
|
|
const WeatherWidget = dynamic(() => import("@/components/accueil/WeatherWidget"), {
|
|
loading: () => <div className="h-32 bg-gray-100 dark:bg-gray-800 rounded-2xl animate-pulse" />,
|
|
ssr: false,
|
|
});
|
|
|
|
export default function AccueilPage() {
|
|
return (
|
|
<Layout>
|
|
<div className="px-4 py-6 space-y-6">
|
|
<header className="text-center py-4">
|
|
<Logo size={140} className="mb-4" />
|
|
<h1 className="text-2xl font-bold text-primary dark:text-primary mb-2">
|
|
Ia Ora Na
|
|
</h1>
|
|
<p className="text-lg text-gray-700 dark:text-gray-300">
|
|
Bienvenue à la Pension Marama
|
|
</p>
|
|
</header>
|
|
|
|
<WeatherWidget />
|
|
|
|
<section className="bg-secondary dark:bg-primary/20 rounded-2xl p-6">
|
|
<h2 className="text-xl font-semibold text-primary dark:text-primary mb-3">
|
|
Le mot du gérant
|
|
</h2>
|
|
<p className="text-gray-700 dark:text-gray-300 leading-relaxed">
|
|
{config.gerantMessage}
|
|
</p>
|
|
</section>
|
|
</div>
|
|
</Layout>
|
|
);
|
|
}
|
|
|