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