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

{t('refund.title')}

{t('refund.h1')}

{t('refund.p1')}




{t('refund.h2')}

{t('refund.p2')}

{t('refund.p3')}

{t('refund.p4')}

{t('refund.p5')}




{t('refund.h3')}

{t('refund.p6')}

{t('refund.p7')}

{t.rich('refund.p8', { link: (c) => {c} })}




{t('refund.h4')}

{t('refund.p9')}

{t('refund.p10')}

{t('refund.p11')}

{t('refund.p12')}


{t('refund.p13')}

{t('refund.p14')}

{t('refund.p15')}

{t('refund.p16')}

{t('refund.p17')}

{t('refund.p18')}


{t('refund.h5')}

{t('refund.p19')}


{t('refund.p20')}

{t('refund.p21')}

{t('refund.p22')}

{t('refund.p23')}

{t('refund.p24')}




{t('refund.h6')}

{t('refund.p25')}




{t('refund.h7')}

{t('refund.p26')}

{t('refund.p27')}

{t('refund.p28')}




{t('refund.h8')}

{t('refund.p29')}




{t('refund.h9')}

{t('refund.p30')}




{t('refund.h10')}

{t('refund.p31')}

{t('refund.p32')}

{t('refund.p33')}




{t('refund.h11')}

{t('refund.p34')}




{t('refund.h12')}

{t('refund.p35')}

Error 404

www.nightspire.gg

consultas@nightspire.gg


{t('refund.updated')}

) }