first commit

This commit is contained in:
2026-06-16 19:17:37 +03:00
parent 2d149f1178
commit 6fa7cc6630
25 changed files with 1378 additions and 167 deletions
+17
View File
@@ -0,0 +1,17 @@
import { setRequestLocale, getTranslations } from 'next-intl/server';
import { ContactContent } from '@/components/contact-content';
export async function generateMetadata({ params }: { params: Promise<{ locale: string }> }) {
const { locale } = await params;
const t = await getTranslations({ locale, namespace: 'nav' });
return {
title: `${t('contact')} - Kordon Apart`,
};
}
export default async function ContactPage({ params }: { params: Promise<{ locale: string }> }) {
const { locale } = await params;
setRequestLocale(locale);
return <ContactContent />;
}