import type { Metadata } from 'next' import { getTranslations } from 'next-intl/server' export const metadata: Metadata = { title: 'Contáctanos', } 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')}

) }