import Link from "next/link"; import Slider from "react-slick"; import { sliderProps } from "@/utility/sliderProps"; const HeroBanner = () => { const heroSlides = [ { title: "Welcome to Shivas Dosa Restaurant", subtitle: "Start price Only $25", description: "Truly Authentic South Indian Cuisine", image: "/assets/images/banner/4.webp", btnText: "Know More" }, { title: "Quality Food and Dinning Experience", subtitle: "Burger combo only $15", description: "Taking you back to Home", image: "/assets/images/banner/2.webp", btnText: "Dine in Menu" }, { title: "Weekend Specials", subtitle: "Pizza deals from $10", description: "Our Extensive South Indian Menu", image: "/assets/images/banner/3.webp", btnText: "Dine in Menu" }, { title: "Real Taste, Real South Cuisine", subtitle: "Pizza deals from $10", description: "More than 125 Menu Items - Special options for Veg, Non-veg, Vegan, Jain, Halal and Svami Narayan Foods", image: "/assets/images/banner/1.webp", btnText: "Dine in Menu" }, { title: "Undertake Customize Catering Orders", subtitle: "Pizza deals from $10", description: "Customize Menu items as per Customer's Request", image: "/assets/images/banner/5.webp", btnText: "Contact Us" }, ]; return (
{heroSlides.map((slide, idx) => (
{/* {slide.subtitle} */}

{slide.title}

{slide.description}

View All Menu
Hero
))}
{/* Static Background Shapes */}
{/*
Shape 1
*/}
Shape 2
Shape 3
Shape 4
Shape 5
); }; export default HeroBanner;