import { createFileRoute, Link } from '@tanstack/react-router' import { ArrowRight, Calendar, MapPin, Users } from 'lucide-react' import { allSpeakers, allTalks } from 'content-collections' import SpeakerCard from '#/components/SpeakerCard' import TalkCard from '#/components/TalkCard' import RemyAssistant from '#/components/RemyAssistant' import HeroCarousel from '#/components/HeroCarousel' export const Route = createFileRoute('/')({ component: HomePage, }) function HomePage() { const featuredSpeakers = allSpeakers.slice(0, 3) const featuredTalks = allTalks.slice(0, 4) return ( <> {/* Hero Section */}
{/* Background carousel */}
{/* Event date badge */}
March 15-17, 2026 Paris, France
{/* Main title */}

Haute Pâtisserie

Join the world's most celebrated pastry chefs and master bakers for three extraordinary days of masterclasses, demonstrations, and culinary inspiration.

{/* Stats */}
{allSpeakers.length}
Master Chefs
{allTalks.length}
Sessions
3
Days
{/* CTA buttons */}
Meet Our Speakers View Sessions
{/* Featured Speakers Section */}

Featured Speakers

Learn from award-winning pastry chefs and master bakers

View all speakers
{featuredSpeakers.map((speaker) => ( ))}
View all speakers
{/* Divider */}
{/* Featured Sessions Section */}

Featured Sessions

Masterclasses and demonstrations to elevate your craft

View all sessions
{featuredTalks.map((talk) => ( ))}
View all sessions
{/* CTA Section */}
{/* Decorative elements */}

Ready to Elevate Your Craft?

Join us in Paris for an unforgettable experience with the world's finest pastry artisans.

🥐 Registration opens January 2026
) }