'use client'; import { MapPin } from 'lucide-react'; import Image from 'next/image'; import { useLanguage } from '@/shared/language'; import { Button } from '@/shared/shadcn-ui/button'; export const HeroSection = () => { const { t } = useLanguage(); return (
Gas Station Network

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

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

); };