feat: Application PWA Compagnon du lagon - Pension Marama

- Configuration Next.js 14 avec TypeScript et Tailwind CSS
- Navigation mobile avec 4 onglets (Accueil, Explorer, Mana Tracker, Infos)
- Page Accueil: WiFi card, widget météo, message gérant
- Page Explorer: Lieux de Fakarava (plages, restaurants, épiceries) avec Google Maps
- Page Mana Tracker: Marées, lever/coucher soleil, réservations excursions, notifications push
- Page Infos Pratiques: FAQ par thèmes, lexique tahitien, section contact
- PWA complète: manifest, service worker, cache offline
- Design Tropical Chic: palette bleu lagon (#0E7490), vert citron (#ECFCCB)
- Configuration Docker pour déploiement
- Données spécifiques à Fakarava intégrées
- Logo Relais Marama intégré
- Serveur configuré pour accès réseau local (mobile)
This commit is contained in:
2025-11-23 08:14:22 +01:00
parent afd3881015
commit f3a8d26bd0
7 changed files with 122 additions and 7 deletions

View File

@ -2,6 +2,7 @@ import dynamic from "next/dynamic";
import Layout from "@/components/layout/Layout";
import { config } from "@/lib/config";
import WifiCard from "@/components/accueil/WifiCard";
import Logo from "@/components/Logo";
const WeatherWidget = dynamic(() => import("@/components/accueil/WeatherWidget"), {
loading: () => <div className="h-32 bg-gray-100 rounded-2xl animate-pulse" />,
@ -13,6 +14,7 @@ export default function AccueilPage() {
<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 mb-2">
Ia Ora Na
</h1>