'use client'; import Link from "next/link"; import Button from "@/components/Button"; import GamePeriod from "@/components/GamePeriod"; import GrandPrize from "@/components/GrandPrize"; import AboutContest from "@/components/AboutContest"; import TeaIconsBackground from "@/components/TeaIconsBackground"; import { PrizeCard } from "@/components/ui"; import { useState, useEffect } from "react"; import { useAuth } from "@/contexts/AuthContext"; import { ROUTES } from "@/utils/constants"; import { useRouter } from "next/navigation"; const HOME_PRIZES = [ { imageSrc: "/images/lots/infuseur.png", imageAlt: "Infuseur à thé premium", badge: "60%", title: "Infuseur à thé premium", description: "Un infuseur en acier inoxydable de haute qualité pour ressortir les arômes de vos thés en vrac" }, { imageSrc: "/images/lots/the-detox.png", imageAlt: "Boîte 100g thé détox", badge: "20%", title: "Boîte 100g thé détox", description: "Mélange détox aux plantes bio" }, { imageSrc: "/images/lots/the-signature.png", imageAlt: "Boîte 100g thé signature", badge: "10%", title: "Boîte 100g thé signature", description: "Notre mélange signature exclusif" }, { imageSrc: "/images/lots/coffret-39.png", imageAlt: "Coffret découverte 39€", badge: "6%", title: "Coffret découverte 39€", description: "Sélection de nos meilleurs thés" }, { imageSrc: "/images/lots/coffret-69.jpg", imageAlt: "Coffret prestige 69€", badge: "4%", title: "Coffret prestige 69€", description: "Une expérience complète" }, { imageSrc: "/images/lots/grand-prix.png", imageAlt: "Grand prix - 1 an de thé", badge: "1 an de THÉ", title: "Tirage Final", description: "Livraison mensuelle pendant 12 mois", isGrandPrix: true }, ]; export default function HomePage() { const [animationKey] = useState(Date.now()); const { isAuthenticated, user } = useAuth(); const router = useRouter(); // Redirect admin/employee to their dashboard useEffect(() => { if (isAuthenticated && user) { const role = user.role?.toUpperCase(); if (role === 'ADMIN') { router.replace(ROUTES.ADMIN_DASHBOARD); } else if (role === 'EMPLOYEE') { router.replace(ROUTES.EMPLOYEE_DASHBOARD); } } }, [isAuthenticated, user, router]); // Don't show home page for admin/employee if (isAuthenticated && user) { const role = user.role?.toUpperCase(); if (role === 'ADMIN' || role === 'EMPLOYEE') { return null; } } return (
{/* Hero Section - Bannière principale */}

Jeu Concours - Thé Tip Top

Célébrons l'ouverture de notre 10ème boutique à Nice

Participez à notre concours - 100% des participants gagnent un lot !

{/* Bouton principal */}
{/* Anneau qui pulse autour du bouton */}
{/* Boutons Inscription/Connexion pour mobile (non-authentifié) */} {!isAuthenticated && (
)}
{/* Game Period & Countdown Section */}
{/* Game Period Cards */} {/* Grand Prize Banner */}
{/* About Contest Section */} {/* How to Participate Section */}

Comment participer?

3 étapes simples pour découvrir votre lot et rejoindre nos milliers de gagnants

{/* Step 1 */}
1

Inscrivez-vous

Créez votre compte rapidement avec Google, Facebook ou votre email

{/* Step 2 */}
2

Entrez votre code

Saisissez le code à 10 caractères de votre ticket

{/* Step 3 */}
3

Découvrez votre lot

Résultat immédiat ! 100% des participants remportent un prix

{/* Prizes Section */}

Lots à gagner

Découvrez nos magnifiques prix, des accessoires premium aux coffrets exclusifs

{HOME_PRIZES.map((prize, index) => ( ))}
); }