first commit

This commit is contained in:
2025-11-23 08:02:54 +01:00
commit afd3881015
52 changed files with 9280 additions and 0 deletions

14
lib/config.ts Normal file
View File

@ -0,0 +1,14 @@
export const config = {
bungalowNumber: process.env.NEXT_PUBLIC_BUNGALOW_NUMBER || "1",
wifiName: process.env.NEXT_PUBLIC_WIFI_NAME || "Lagon-WiFi",
wifiPassword: process.env.NEXT_PUBLIC_WIFI_PASSWORD || "motdepasse123",
gerantMessage: process.env.NEXT_PUBLIC_GERANT_MESSAGE || "Bienvenue dans notre pension de famille !",
contact: {
email: process.env.NEXT_PUBLIC_CONTACT_EMAIL || undefined,
phone: process.env.NEXT_PUBLIC_CONTACT_PHONE || undefined,
whatsapp: process.env.NEXT_PUBLIC_CONTACT_WHATSAPP || undefined,
address: process.env.NEXT_PUBLIC_CONTACT_ADDRESS || "Rotoava, Fakarava",
hours: process.env.NEXT_PUBLIC_CONTACT_HOURS || "Disponible 24/7 pour les urgences",
},
};