import { ArrowPathRoundedSquareIcon, CurrencyDollarIcon, StarIcon, TruckIcon } from '@heroicons/react/24/outline'; import Image from 'next/image'; import { Suspense } from 'react'; import HomePageFilters from './filters/hompage-filters'; const offers = [ { name: 'Flat Rate Shipping (Commercial Address)', icon: TruckIcon }, { name: 'Up to 5 Years Unlimited Miles Warranty', icon: ArrowPathRoundedSquareIcon }, { name: 'Excellent Customer Support', icon: StarIcon }, { name: 'No Core Charge for 30 Days', icon: CurrencyDollarIcon } ]; const Hero = () => { return (
{/* Decorative image and overlay */}
); }; export default Hero;