"use client"; import Image from "next/image"; import Link from "next/link"; import { useSearchParams } from "next/navigation"; import { Suspense } from "react"; import { LanguageToggle } from "@/components/language-toggle"; import { useLanguage } from "@/lib/i18n-context"; function AccountNotFoundContent() { const searchParams = useSearchParams(); const email = searchParams.get("email") || ""; const { t } = useLanguage(); const a = t.auth.accountNotFound; return ( {/* Left Side */} {a.editorialIntelligence} {a.tradePrecision} {a.tradeSubtitle} {/* Right Side */} help_outline {a.helpLink} person_off {a.title} {email} {a.change} {a.createAccount} {t.common.or} login {a.loginOther} ); } export default function AccountNotFoundPage() { return ( ); }
{a.tradeSubtitle}
{email}