'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.line001')}
{t('home.previews.bar.title.line002')}
{t('home.previews.bar.title.line003')}
{t('home.previews.bar.body')}
{t('home.previews.bar.button')}
); }