import React from "react"; interface HeroSecondProps { title: string; } export default function HeroSecond({ title }: HeroSecondProps) { return ( <>
{/* Background Image */} Hero Section {/* Overlay Content */}

{title}

); }