"use client"; import { motion } from "framer-motion"; import Image from "next/image"; // Custom Gold Category Icons (SVG Paths) const LeafThaliIcon = () => ( ); const BiryaniRiceIcon = () => ( ); const TiffinsDosasIcon = () => ( ); const CurriesGraviesIcon = () => ( ); const SweetsDessertsIcon = () => ( ); const BeveragesIcon = () => ( ); const TandoorSpecialsIcon = () => ( ); const SeafoodDelightsIcon = () => ( ); const ChefSpecialsIcon = () => ( ); const BanquetMenusIcon = () => ( ); // Ornate Corner Leaf Ornament Vector details const CornerOrnaments = () => ( <> {/* Top Left Leaf Corner */} {/* Top Right Leaf Corner */} {/* Bottom Left Leaf Corner */} {/* Bottom Right Leaf Corner */} ); const ROW1_CATEGORIES = [ { id: "thali", title: "Traditional Thali", subtitle: "FEATURED", desc: "A wholesome spread of authentic South Indian flavors served the traditional way.", image: "/images/south_indian_thali_luxury.png", icon: LeafThaliIcon, isDouble: true, }, { id: "biryani", title: "Biryani & Rice", desc: "Aromatic, flavorful & slow-cooked to perfection.", image: "/images/category_biryani.jpg", icon: BiryaniRiceIcon, }, { id: "dosas", title: "Tiffins & Dosas", desc: "Crisp, soft & made fresh for a perfect start.", image: "/images/masala_dosa_luxury.png", icon: TiffinsDosasIcon, }, { id: "curries", title: "Curries & Gravies", desc: "Rich, flavorful & inspired by regional classics.", image: "/images/category_curries.jpg", icon: CurriesGraviesIcon, }, ]; const ROW2_CATEGORIES = [ { id: "sweets", title: "Sweets & Desserts", desc: "Traditional sweets crafted to end your meal beautifully.", image: "/images/category_sweets.jpg", icon: SweetsDessertsIcon, }, { id: "beverages", title: "Beverages", desc: "Refreshing & traditional drinks to complement every meal.", image: "/images/category_beverages.jpg", icon: BeveragesIcon, }, { id: "tandoor", title: "Tandoor Specials", desc: "Fire-grilled delights with bold spices and irresistible aroma.", image: "/images/category_tandoor.jpg", icon: TandoorSpecialsIcon, }, { id: "seafood", title: "Seafood Delights", desc: "Coastal flavors cooked with authenticity and passion.", image: "/images/category_seafood.jpg", icon: SeafoodDelightsIcon, }, { id: "chef_specials", title: "Chef's Specials", desc: "Handpicked creations by our master chef, just for you.", image: "/images/category_chef_specials.jpg", icon: ChefSpecialsIcon, }, { id: "banquet", title: "Banquet Menus", desc: "Curated menus for weddings, events & celebrations.", image: "/images/category_banquet.jpg", icon: BanquetMenusIcon, }, ]; export default function CulinaryCategories() { return (
{/* Background Graphic Template Layer */}
Categories Backdrop
{/* Title Area */}
OUR CULINARY CATEGORIES

A World of Flavors,
Rooted in Tradition

{/* Traditional Separator */}

From timeless South Indian classics to exclusive chef's creations, explore our diverse culinary experiences crafted for every occasion.

{/* Categories Grid Container */}
{/* Row 1 Grid: 5 columns on desktop */}
{ROW1_CATEGORIES.map((cat) => { const Icon = cat.icon; if (cat.isDouble) { // Double Card: Traditional Thali return ( {/* Inner gold design outline and corner leaves */}
{/* Gold Category Badge at top center of card with interactive outer ring */}
{/* Rotating Outer Dashed Mandala Ring on Hover */}
{/* Radial Glow Overlay on Hover */}
{/* Left: circular thali image with slow rotating mandala border */}
{/* Spin ring behind thali */}
{cat.title}
{/* Right: details */}
{cat.subtitle}

{cat.title}

{/* Divider */} ); } // Standard portrait cards in Row 1 (Arched pointed gothic frames) return ( {/* Inner gold design outline and corner leaves */}
{/* Gold Category Badge with rotating outer dashed border */}
{/* Radial Hover Glow */}
{/* Arched Gothic pointed dome Food Image container */}
{cat.title}

{cat.title}

{cat.desc}

{/* Circular Explore button with slide transition */} ); })}
{/* Row 2 Grid: 6 columns on desktop */}
{ROW2_CATEGORIES.map((cat) => { const Icon = cat.icon; return ( {/* Inner gold design outline and corner leaves */}
{/* Gold Category Badge with rotating outer dashed border */}
{/* Radial Hover Glow */}
{/* Arched Gothic pointed dome Food Image */}
{cat.title}

{cat.title}

{cat.desc}

{/* Circular Explore button */} ); })}
{/* Bottom Banner */}
❧ AUTHENTIC RECIPES • FINEST INGREDIENTS • TIME-HONORED TRADITIONS • MADE WITH LOVE ☙
); }