import { Contacts } from '@/components/contacts'; import { Person } from '@/components/person'; import { Projects } from '@/components/projects'; import { Skills } from '@/components/skills'; import { NeonGradientCard } from '@/components/ui/neon-gradient-card'; import { Work } from '@/components/work'; import { type Metadata } from 'next'; import { getTranslations } from 'next-intl/server'; type PageProps = { params: Promise<{ id: string; locale: string }>; searchParams: Promise<{ [key: string]: string | string[] | undefined }>; }; export async function generateMetadata({ params }: PageProps): Promise { const { locale } = await params; const t = await getTranslations({ locale, namespace: 'HomePage' }); return { title: t('title'), }; } export default function HomePage() { return (
{/* */}
); }