"use client"; import Link from "next/link"; interface HeroSectionProps { backgroundImage: string; } export default function HeroSection({ backgroundImage }: HeroSectionProps) { return (
{/* Background Image */}
{/* Dark overlay for readability */}
{/* Hero Content */}
{/* Game Title */}

GAME.OF.TECH

{/* Subtitle */}
Peaksys
{/* Description */}

Transformez votre apprentissage en aventure. Participez aux ateliers, défiez-vous sur les katas, partagez vos connaissances lors des présentations et progressez dans votre parcours tech. Gagnez de l'expérience, montez en niveau et affrontez vos collègues sur le classement. L'excellence technique, ça se joue.

{/* Call-to-Action Buttons */}
); }