"use client"; import { motion } from "framer-motion"; import Image from "next/image"; export default function MenuPreview() { const leftColumnItems = [ { name: "ONION RAVA DOSA", desc: "Crispy semolina crepe with onions, herbs & spices.", tag: "RAVA SPL", tagType: "green" }, { name: "IDLI SAMBAR (2 PCS)", desc: "Steamed fluffy rice & lentil cakes with hot sambar.", tag: "TIFFIN SPL", tagType: "gold" }, { name: "MYSORE MASALA DOSA", desc: "Rice crepe spread with spicy chutney & potato masala.", tag: "CLASSIC", tagType: "orange" }, { name: "RAVA MASALA DOSA", desc: "Crispy semolina crepe filled with spiced potato masala.", tag: "RAVA SPL", tagType: "green" }, { name: "PURI BHAJI (3 PCS)", desc: "Golden fluffy deep-fried puris with flavorful potato bhaji.", tag: "TIFFIN SPL", tagType: "gold" } ]; const rightColumnItems = [ { name: "MASALA DOSA", desc: "Crispy thin rice & lentil crepe stuffed with potato masala.", tag: "CLASSIC", tagType: "orange" }, { name: "ONION RAVA MASALA DOSA", desc: "Semolina crepe with onions and spiced potato filling.", tag: "RAVA SPL", tagType: "green" }, { name: "MEDU VADA (2 PCS)", desc: "Deep fried crispy lentil donuts served with sambar & chutney.", tag: "TIFFIN SPL", tagType: "gold" }, { name: "PAPER ROAST DOSA", desc: "Extra large, paper-thin, crispy dosa served hot.", tag: "CLASSIC", tagType: "orange" }, { name: "RAVA PLAIN DOSA", desc: "Crispy semolina crepe served with chutney & sambar.", tag: "RAVA SPL", tagType: "green" } ]; const containerVariants = { hidden: { opacity: 0 }, show: { opacity: 1, transition: { staggerChildren: 0.12 } } } as const; const itemVariants = { hidden: { opacity: 0, y: 15 }, show: { opacity: 1, y: 0, transition: { duration: 0.5, ease: "easeOut" } } } as const; return (
{/* Background Gopuram sketch (Left) */} Gopuram Sketch {/* Background Palace sketch (Right) */} Palace Sketch
{/* Header Elements */}
{/* Top traditional gold design element */}

Our Menu

{/* Double line with diamond ornament */}

Explore a wide variety of authentic South Indian vegetarian dishes,
crafted with traditional recipes and the finest ingredients.

{/* 2-Column Menu Layout wrapper */}
{/* Vertical Dotted Separator in the center (Desktop only) */}
{/* Left Column Items */} {leftColumnItems.map((item, index) => (
{/* Double Dot Arrow Indicator */} ..>

{item.name}

{item.desc}

{/* Status Badges on the right */}
{item.tag}
))}
{/* Right Column Items */} {rightColumnItems.map((item, index) => (
{/* Double Dot Arrow Indicator */} ..>

{item.name}

{item.desc}

{/* Status Badges on the right */}
{item.tag}
))}
); }