import { vipnagorgialla } from "@/components/Vipnagorgialla";
import Link from "next/link";
import SectionDivider from "@/components/SectionDivider";
import { getTranslations, setRequestLocale } from "next-intl/server";
export default async function Tickets({
params,
}: {
params: Promise<{ locale: string }>;
}) {
const { locale } = await params;
setRequestLocale(locale);
const t = await getTranslations({ locale });
return (
{t("tickets.title")}
{t("tickets.computerParticipant.latePrice")}
{t("tickets.computerParticipant.title")}
{t
.raw("tickets.computerParticipant.features")
.map((feature: string, index: number) => (
-
{feature}
))}
{t("tickets.competitor.price")}
{t("tickets.competitor.title")}
{t
.raw("tickets.competitor.features")
.map((feature: string, index: number) => (
-
{feature}
))}
{/*
*/}
{/**/}
{t("tickets.visitor.latePrice")}
{t("tickets.visitor.title")}
{t
.raw("tickets.visitor.features")
.map((feature: string, index: number) => (
-
{feature}
))}
);
}