import type { Metadata } from 'next' import { getTranslations } from 'next-intl/server' export async function generateMetadata({ params }: { params: Promise<{ locale: string }> }): Promise { const { locale } = await params const t = await getTranslations({ locale, namespace: 'Legal' }) return { title: t('legalNotice.title') } } export default async function LegalNoticePage() { const t = await getTranslations('Legal') return (

{t('legalNotice.title')}

{t('legalNotice.p1')}


{t('legalNotice.p2')}


{t('legalNotice.p3')}


{t('legalNotice.p4')}


{t('legalNotice.p5')}


{t('legalNotice.contactTitle')}

www.nightspire.gg

consultas@nightspire.gg

) }