import { vipnagorgialla } from "@/components/Vipnagorgialla"; import Sponsors from "@/components/Sponsors"; import { Link } from "@/i18n/routing"; import { getTranslations, setRequestLocale } from "next-intl/server"; import Image from "next/image"; export default async function Home({ params, }: { params: Promise<{ locale: string }>; }) { const { locale } = await params; setRequestLocale(locale); const t = await getTranslations({ locale }); return (
{/* Title */}
TipiLAN Logo TipiLAN Logo

{t("tournaments.prizePool")}

10 000€

{/* Grid of buttons */}

{t("navigation.schedule")}

arrow_right_alt
event_note

{t("home.sections.schedule.description")}

{t("navigation.tournaments")}

arrow_right_alt
trophy

{t("home.sections.tournaments.description")}

{t("navigation.expo")}

arrow_right_alt
weekend

{t("home.sections.expo.description")}

{/* Date */}

{t("home.sections.reserveSpot")}

arrow_right_alt

24.-26. okt.

{/* Sponsors */}
); }