import { vipnagorgialla } from "@/components/Vipnagorgialla"; import Link from "next/link"; import Image from "next/image"; import { getTranslations, setRequestLocale } from "next-intl/server"; export default async function Tourney({ params, }: { params: Promise<{ locale: string }>; }) { const { locale } = await params; setRequestLocale(locale); const t = await getTranslations({ locale }); const headingStyle = `text-3xl md:text-5xl lg:text-5xl ${vipnagorgialla.className} font-bold uppercase text-[#2A2C3F] dark:text-[#EEE5E5] -skew-x-2 md:-skew-x-5`; return (

{t("tournaments.title")}

{/* CS2 turniir */}

{t("tournaments.cs2.title")}

{t("tournaments.cs2.timing")}

{t("tournaments.cs2.description1")}


{t("tournaments.cs2.description2")}

{t("tournaments.cs2.description3")}


{/* Outside div needs to remain so that overflow won't occur*/} CS2 tournament
{/* LoL turniir */}
{/* Outside div needs to remain so that overflow won't occur*/} LoL tournament

{t("tournaments.lol.title")}

{t("tournaments.lol.timing")}

{t("tournaments.lol.description1")}


{t("tournaments.lol.description2")}


{/* Mini-turniirid */}

{t("tournaments.mini.title")}

{t("tournaments.mini.timing")}

{t("tournaments.mini.description1")}


{t("tournaments.mini.description2")}


{/* Outside div needs to remain so that overflow won't occur*/} mini tournaments
); }