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('contact.title') } } export default async function ContactUsPage() { const t = await getTranslations('Legal') return (

{t('contact.title')}

{t('contact.p1')}

{t('contact.p2')}

contacto@ultimowow.com


{t('contact.p3')}

{t('contact.p4')}

{t('contact.p5')}


{t('contact.p6')}

{t('contact.p7')}


{t('contact.p8')}

) }