import React from 'react'; import { useTranslations } from 'next-intl'; import Scribble from '@/components/Scribble'; export default function VideoSection() { const t = useTranslations('Home.video'); return (

{t.rich('title', { future: (chunks) => ( {chunks} ) })}

); }