'use client' import { Check } from 'lucide-react' const services = [ { title: 'Hull Cleaning & Anode Change', description: 'Professional underwater hull cleaning and zinc anode maintenance for optimal performance and corrosion protection.', image: '/diver_cleaning.jpg', features: [ 'Removes marine growth', 'Improves fuel efficiency', 'Prevents corrosion', 'Marine-grade anodes' ] }, { title: 'Exterior Cleaning', description: 'Complete exterior detailing to keep your boat looking pristine and protected.', image: '/Washdown.jpg', features: [ 'Deep cleaning wash', 'Protective wax application', 'UV protection', 'Gel coat restoration' ] }, { title: 'Interior Detailing', description: 'Thorough interior cleaning and conditioning for a fresh, comfortable cabin.', image: '/Interior.jpg', features: [ 'Upholstery cleaning', 'Mold & mildew treatment', 'Surface conditioning', 'Odor elimination' ] } ] export default function ServicesSection() { const handleQuote = () => { window.location.href = 'tel:510-701-2535' } return (

Our Services

Professional boat maintenance tailored to your needs

{services.map((service, index) => (
{/* Service Image */}
{service.title}
{/* Service Content */}

{service.title}

{service.description}

{/* Features List */}
    {service.features.map((feature, idx) => (
  • {feature}
  • ))}
{/* CTA Button */}
))}
) }