import React from 'react'; import { ArrowRight, Settings } from 'lucide-react'; import { Link } from 'react-router-dom'; import { Button, Container } from './Shared'; import { useData } from '../contexts/DataContext'; export const Hero: React.FC = () => { const { data } = useData(); const { hero, texts } = data; return (
{/* Background Image with Overlay */}
Oficina Mecânica
{/* Badge atualizado com border-primary sólido */}
Centro Automotivo Premium

') }} />

{hero.subtitle}

{texts.hero.feature1}
|
{texts.hero.feature2}
|
{texts.hero.feature3}
); };