'use client'; import AppImage from '@/components/ui/AppImage'; import Button from '@/components/ui/Button'; import Logo from '@/components/ui/Logo'; import TrustBadges from '@/components/home/TrustBadges'; import { ArrowRight, ShieldCheck, MapPin, Clock } from 'lucide-react'; import { useTranslation } from '@/hooks/useTranslation'; import { PAGE_IMAGES } from '@/infrastructure/images'; import { SITE_LOCATION, SITE_HOURS, SITE_ADDRESS, WHATSAPP_URL } from '@/lib/constants'; export default function Hero() { const { t } = useTranslation(); return (

{SITE_LOCATION}

{t('hero.taglineShort')}

{t('hero.badge')}

{t('hero.title')}

{t('hero.subtitleShort')}

{t('hero.subtitle')}

{t('hero.hours', { hours: SITE_HOURS })} {SITE_ADDRESS}
); }