"use client"; import Link from "next/link"; import { useTranslation } from "@/app/hooks/useTranslation"; import RegistrationForm from "@/app/components/forms/RegistrationForm"; export default function RegistrationPageClient() { const { registration, lang } = useTranslation(); const backLabel = lang === "vi" ? "Quay Về Trang Chủ" : "Back to Home"; return (
arrow_back {backLabel}

{registration.title}

{registration.subtitle}

); }