"use client"; import Image from "next/image"; interface InnerBannerProps { title: string; subtitle?: string; breadcrumbs?: { label: string; href?: string }[]; backgroundImage?: string; } export default function InnerBanner({ title, subtitle, breadcrumbs, backgroundImage = "/hero-image.jpg" }: InnerBannerProps) { return (
{subtitle}
)} {/* Decorative Line */}