diff --git a/src/components/ChefShowcase.tsx b/src/components/ChefShowcase.tsx
index fbc5cf0..30b824c 100644
--- a/src/components/ChefShowcase.tsx
+++ b/src/components/ChefShowcase.tsx
@@ -145,7 +145,13 @@ export default function ChefShowcase() {
{/* Left Column: Chef Details */}
-
+
@@ -187,10 +193,16 @@ export default function ChefShowcase() {
-
+
{/* Right Column: Chef Cooking Portrait with Overlay Badge */}
-
+
{/* 30+ Years Experience Badge Overlay */}
@@ -224,12 +236,18 @@ export default function ChefShowcase() {
/>
-
+
{/* Middle Highlights Card Section */}
-
+
{/* Feature 1: Authentic Recipes */}
@@ -274,13 +292,19 @@ export default function ChefShowcase() {
Every dish is prepared with care, devotion & warmth.
-
+
{/* Bottom Section: Quote on the Left & Spices Parchment Card on the Right */}
{/* Bottom Left: Gopuram Sketch Background & Large Narrative Quote */}
-
+
{/* Quote details */}
“
@@ -297,10 +321,16 @@ export default function ChefShowcase() {
-
+
{/* Bottom Right: Spices Parchment Card */}
-
+
{/* Inner border line overlay */}
@@ -340,7 +370,7 @@ export default function ChefShowcase() {
-
+
diff --git a/src/components/EventsAccordion.tsx b/src/components/EventsAccordion.tsx
index 6edfd3e..4292bd9 100644
--- a/src/components/EventsAccordion.tsx
+++ b/src/components/EventsAccordion.tsx
@@ -1,6 +1,7 @@
"use client";
import { useState } from "react";
+import { motion } from "framer-motion";
import Image from "next/image";
// Custom Ornate Gold Category SVG Icons
@@ -150,7 +151,13 @@ export default function EventsAccordion() {
{/* Title Block Header */}
-
+
{/* Gold Star/Diamond Emblem header */}
+
{/* Horizontal Accordion Track */}
-
+
{events.map((event, idx) => {
const isActive = idx === activeIdx;
const CategoryIcon = event.icon;
@@ -322,7 +335,7 @@ export default function EventsAccordion() {
);
})}
-
+
diff --git a/src/components/MenuPreview.tsx b/src/components/MenuPreview.tsx
index 280f6f1..1ebd2fa 100644
--- a/src/components/MenuPreview.tsx
+++ b/src/components/MenuPreview.tsx
@@ -97,10 +97,13 @@ const CategoryPill = ({ tag, type }: { tag: string; type: "green" | "gold" | "or
);
};
-const MenuItemCard = ({ name, desc, tag, type, img }: MenuItemProps) => (
+const MenuItemCard = ({ name, desc, tag, type, img, index }: MenuItemProps & { index: number }) => (
{/* Inner decorative inset line */}
@@ -319,14 +322,14 @@ export default function MenuPreview() {
{/* Left Column Item Cards */}
{leftColumnItems.map((item, index) => (
-
+
))}
{/* Right Column Item Cards */}
{rightColumnItems.map((item, index) => (
-
+
))}
diff --git a/src/components/RestaurantStory.tsx b/src/components/RestaurantStory.tsx
index baba01c..7722732 100644
--- a/src/components/RestaurantStory.tsx
+++ b/src/components/RestaurantStory.tsx
@@ -1,6 +1,7 @@
"use client";
import Image from "next/image";
+import { motion } from "framer-motion";
const StoryPreTitleOrnament = () => (