'use client'; import { MapPin } from 'lucide-react'; import { Stations } from '@/app/api-utlities/@types'; import { GasStationMap } from '@/features/map'; import { useTextController } from '@/shared/language/hooks/use-text-controller'; interface MapSectionProps { stations: Stations; } export const MapSection = ({ stations }: MapSectionProps) => { const { t } = useTextController(); return (

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

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

); };