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 (
{Array.from(price).map((char, index) => ( {char} ))}