'use client'; import { useTranslations } from 'next-intl'; import Link from 'next/link'; export default function ConceptPreview() { const t = useTranslations('Index'); return (
{t('home.previews.concept.title')}
{t('home.previews.concept.subtitle')}
{t('home.previews.concept.body')}
{t('home.previews.concept.button')}
); }