diff --git a/src/components/sections/MenuSection.tsx b/src/components/sections/MenuSection.tsx index 6b2ab9e..3872031 100644 --- a/src/components/sections/MenuSection.tsx +++ b/src/components/sections/MenuSection.tsx @@ -1,37 +1,43 @@ "use client"; -import Card from "@/components/ui/Card" -import TextAnimation from "@/components/ui/TextAnimation" +import Card from "@/components/ui/Card"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; export default function MenuSection() { const items = [ - { title: "Espresso", description: "Rich, bold, and smooth.", price: "$3.50" }, - { title: "Cappuccino", description: "Perfectly steamed milk.", price: "$4.50" }, - { title: "Latte", description: "Creamy and comforting.", price: "$4.75" }, - { title: "Mocha", description: "Decadent chocolate blend.", price: "$5.00" }, - { title: "Americano", description: "Espresso with hot water.", price: "$3.75" }, - { title: "Flat White", description: "Velvety microfoam finish.", price: "$4.25" }, - ] + { title: "Espresso", description: "Rich, bold, and smooth.", price: "$3.50", imageSrc: "/espresso.jpg" }, + { title: "Cappuccino", description: "Perfectly steamed milk.", price: "$4.50", imageSrc: "/cappuccino.jpg" }, + { title: "Latte", description: "Creamy and comforting.", price: "$4.75", imageSrc: "/latte.jpg" }, + { title: "Mocha", description: "Decadent chocolate blend.", price: "$5.00", imageSrc: "/mocha.jpg" }, + { title: "Americano", description: "Espresso with hot water.", price: "$3.75", imageSrc: "/americano.jpg" }, + { title: "Flat White", description: "Velvety microfoam finish.", price: "$4.25", imageSrc: "/flat-white.jpg" }, + ]; return ( - ) + ); } \ No newline at end of file