From 6854599796a3c33b8e9421293fa52a2b6cbcb389 Mon Sep 17 00:00:00 2001 From: vitalijmulika Date: Wed, 29 Apr 2026 13:44:55 +0300 Subject: [PATCH] Bob AI: Create the 'Menu' page file and add basic content. --- src/components/sections/MenuSection.tsx | 37 +++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/components/sections/MenuSection.tsx diff --git a/src/components/sections/MenuSection.tsx b/src/components/sections/MenuSection.tsx new file mode 100644 index 0000000..2d8f63e --- /dev/null +++ b/src/components/sections/MenuSection.tsx @@ -0,0 +1,37 @@ +"use client"; + +import { Card } from "@/components/ui/Card" +import { TextAnimation } from "@/components/ui/TextAnimation" + +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" }, + ] + + return ( + + ) +} \ No newline at end of file