import Image from "next/image"; type HeroImageProps = { title?: string; imgSrc?: string; }; export default function HeroImage({ title = "", imgSrc = "/images/breadcrumbs-bg-05-1922x441.jpg" }: HeroImageProps) { return (
Blog

{title}

); }