import { useTranslations } from 'next-intl';
import { Section, Container, Button, Heading, Card } from '@/components/ui';
export default function ContactPage() {
const t = useTranslations('Contact');
return (
{/* Hero Section */}
{t('title')}
{t('subtitle')}
{/* Contact Info */}
How to Reach Us
Our Office
{t('info.address')}
{t('hours.title')}
-
{t('hours.weekdays')}
{t('hours.weekdaysTime')}
-
{t('hours.weekend')}
{t('hours.closed')}
{/* Contact Form */}
{/* Map Placeholder */}
Interactive Map Coming Soon
);
}