"use client"; import Image from "next/image"; type HeroClientProps = { title: string; description: string; bgSrc: string; }; const HeroBackground = ({ src, alt }: { src?: string | null; alt: string }) => { const imageSrc = src?.trim() || "/images/hero-section-fallback.png"; return (
{alt} {alt}
); }; const HeroContent = ({ title, description, }: { title: string; description: string; }) => (

{title}

THE EASIEST OIL CHANGE

  • Replaces Existing Drain Plug
  • Fits Most Engines
  • Easy Installation And Operation
); export function HeroClientRenderer({ title, description, bgSrc, }: HeroClientProps) { return (
); }