14 lines
447 B
TypeScript
14 lines
447 B
TypeScript
import type { Metadata } from 'next';
|
|
import { getTranslations } from 'next-intl/server';
|
|
import HomeScreen from './HomeScreen';
|
|
|
|
export async function generateMetadata({ params }: { params: Promise<{ locale: string }> }): Promise<Metadata> {
|
|
const { locale } = await params;
|
|
const t = await getTranslations({ locale, namespace: 'shell' });
|
|
return { title: t('customer_app') };
|
|
}
|
|
|
|
export default function Page() {
|
|
return <HomeScreen />;
|
|
}
|