import type { Metadata } from 'next' import { getTranslations } from 'next-intl/server' import { Link } from '@/navigation' import { SUPPORTED_SITES } from '@/lib/supported-sites' import { SupportedSitesBrowser } from '@/components/SupportedSitesBrowser' export async function generateMetadata({ params, }: { params: Promise<{ locale: string }> }): Promise { const { locale } = await params const t = await getTranslations({ locale, namespace: 'supportedSitesPage' }) return { title: t('title'), description: t('description'), } } export default async function SupportedSitesPage({ params, }: { params: Promise<{ locale: string }> }) { const { locale } = await params const t = await getTranslations({ locale, namespace: 'supportedSitesPage' }) return (
{t('back')}

{t('heading')}

{t('subheading')}

{t('note')}

) }