'use client'; import { MapPin } from 'lucide-react'; import { GasStationMap } from '@/features/map'; import { useLanguage } from '@/shared/language'; export const MapSection = () => { const { t } = useLanguage(); return (

{t('home.stations.title')}

{t('home.stations.description')}

); };