import { vipnagorgialla } from "@/components/Vipnagorgialla"; import Link from "next/link"; import Image from "next/image"; import { getTranslations, setRequestLocale } from "next-intl/server"; interface TicketCardProps { title: string; subtitle: string; price: string; features: string[]; buttonText: string; buttonHref: string; backgroundImage?: string; backgroundOpacity?: number; className?: string; } function TicketCard({ title, subtitle, price, features, buttonText, buttonHref, backgroundImage, backgroundOpacity = 40, className = "", }: TicketCardProps) { return (
{backgroundImage && ( )}

{title}

{subtitle}

{Array.from(price).map((char, index) => ( {char} ))}

); } export default async function Tickets({ params, }: { params: Promise<{ locale: string }>; }) { const { locale } = await params; setRequestLocale(locale); const t = await getTranslations({ locale }); return (
{/* 2x2 Grid */}
{/* KÜLASTAJA PILET */} {/* TOETAJA PILET */} {/* LOL TURNIIRI PILET */} {/* CS2 TURNIIRI PILET */}
); }