{copy.cardOneText}
import { CalendarClock, Rocket, ShieldCheck, Sparkles } from "lucide-react"; import Link from "next/link"; import { MotionFade } from "@/components/motion-fade"; import { resolveLocale } from "@/lib/site-data"; type ComingSoonPageProps = { params: { locale: string; }; }; export default function ComingSoonPage({ params: { locale } }: ComingSoonPageProps) { const localeKey = resolveLocale(locale); const copy = localeKey === "de" ? { badge: "In Vorbereitung", title: "Wir bauen gerade etwas Grosses.", description: "Die Website ist aktuell im Wartungsmodus. Wir finalisieren Inhalte, Feinschliff und Integrationen fuer den Launch.", cardOneTitle: "Launch Fokus", cardOneText: "Performance, UX und klare Conversion-Flows.", cardTwoTitle: "Naechster Schritt", cardTwoText: "Deployment-Checks und finale Inhalte.", cardThreeTitle: "Status", cardThreeText: "Systeme sind online und werden vorbereitet.", adminLink: "Zum Root Bereich", footer: "Danke fuer deine Geduld.", } : { badge: "Preparing", title: "We are building something big.", description: "The website is currently in maintenance mode. We are finalizing content, polish and integrations before launch.", cardOneTitle: "Launch focus", cardOneText: "Performance, UX and clear conversion flows.", cardTwoTitle: "Next step", cardTwoText: "Deployment checks and final content updates.", cardThreeTitle: "Status", cardThreeText: "Systems are online and being prepared.", adminLink: "Open root area", footer: "Thank you for your patience.", }; return (
{copy.description}
{copy.cardOneText}
{copy.cardTwoText}
{copy.cardThreeText}
{copy.footer}