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