import { getTranslations } from 'next-intl/server' import { Link } from '@/navigation' const PLATFORMS = [ 'YouTube', 'TikTok', 'Instagram', 'Facebook', 'X (Twitter)', 'Vimeo', 'Twitch', 'SoundCloud', 'Dailymotion', ] export async function SupportedPlatformsSection({ locale }: { locale: string }) { const t = await getTranslations({ locale, namespace: 'platforms' }) return (

{t('heading')}

{t('subheading')}

{PLATFORMS.map((name) => ( {name} ))}

{t.rich('more', { link: (chunks) => ( {chunks} ), })}

{t('disclaimer')}

) }