import Link from "next/link"; import Slider from "react-slick"; import { sliderProps } from "@/utility/sliderProps"; const CategorySection = () => { const CategoryData = [ { id: 1, title: "Soups & Salads", image: "/assets/images/home/category/salads.webp", }, { id: 2, title: "Veg Appetizers", image: "/assets/images/home/category/veg-appetizer.webp", }, { id: 3, title: "Non - Veg Appetizers", image: "/assets/images/home/category/chicken-appetizer.webp", }, { id: 4, title: "Egg Delights", image: "/assets/images/home/category/egg.webp", }, { id: 5, title: "DOSA", image: "/assets/images/home/category/dosa.webp", }, { id: 6, title: "IDLY", image: "/assets/images/home/category/idly.webp", }, { id: 7, title: "Uttapam", image: "/assets/images/home/category/uthappam.webp", }, { id: 8, title: "Indian Breads", image: "/assets/images/home/category/indian-breads.webp", }, { id: 9, title: "Tandoori Breads", image: "/assets/images/home/category/tandoor-breads.webp", }, { id: 10, title: "Hakka", image: "/assets/images/home/category/hakka.webp", }, { id: 11, title: "Veg Biryani", image: "/assets/images/home/category/veg-biryani.webp", }, { id: 12, title: "Veg Curry", image: "/assets/images/home/category/veg-curry.webp", }, { id: 13, title: "NON - Veg Biryani", image: "/assets/images/home/category/nonveg-biryani.webp", }, { id: 14, title: "NON - Veg Curry", image: "/assets/images/home/category/nv-curry.webp", }, { id: 15, title: "Deserts", image: "/assets/images/home/category/dessert.webp", }, { id: 16, title: "Beverages", image: "/assets/images/home/category/beverages.webp", } ]; return (
South Indian And North Indian

POPULAR DISHES

{CategoryData.map((cat) => (
{cat.title}
{cat.title}
))}
Shape
{/*
Shape
Shape
*/}
Shape
); }; export default CategorySection;