import Events from "./_components/FeaturedEvents"; import { Stats } from "./_components/Stats"; import { Badges } from "./_components/Badges"; import { RecentFlights } from "(app)/_components/RecentFlights"; import { Bookings } from "(app)/_components/Bookings"; export default async function Home({ searchParams, }: { searchParams: Promise<{ stats?: "pilot" | "dispo" }>; }) { const { stats } = await searchParams; const view = stats || "pilot"; return (