"use client"; import ContractForm from "@/components/ContractForm"; import PageContainer from "@/components/ui/PageContainer"; import PageHeader from "@/components/ui/PageHeader"; import Button from "@/components/ui/Button"; import Link from "next/link"; import { useTranslation } from "@/lib/i18n"; export default function NewContractPage() { const { t } = useTranslation(); return ( } />
); }