import { useTranslations } from 'next-intl'; import { Section, Container, Button } from '@/components/ui'; export default function ContactPage() { const t = useTranslations('Contact'); return (

{t('title')}

{t('subtitle')}

{/* Contact Info */}

{t('info.title')}

{t('hours.title')}

  • {t('hours.weekdays')} {t('hours.weekdaysTime')}
  • {t('hours.weekend')} {t('hours.closed')}
{/* Contact Form Placeholder */}

{t('form.title')}

); }