From e37ed9ebc2bcaa022353eb1cc02dce730ca4e3cf Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sat, 27 Jun 2026 09:51:16 +0000 Subject: [PATCH] Deploy --- src/components/sections/MenuSection.tsx | 70 +++++++++++++++++++++++++ 1 file changed, 70 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..12f4875 --- /dev/null +++ b/src/components/sections/MenuSection.tsx @@ -0,0 +1,70 @@ +import Image from "next/image" +import { Leaf, Star, Utensils } from 'lucide-react' + +export default function MenuSection() { + const dishes = [ + { + name: "Carbonara", + description: "Guanciale, pecorino, egg yolk, black pepper – our family recipe since 1968.", + price: "€14", + icon: Utensils, + image: "https://images.pexels.com/photos/5876/food-salad-healthy-vegetables.jpg?auto=compress&cs=tinysrgb&h=350&w=350", + }, + { + name: "Cacio e Pepe", + description: "Pecorino Romano, tonnarelli, cracked black pepper – simplicity perfected.", + price: "€12", + icon: Star, + image: "https://images.pexels.com/photos/37931489/pexels-photo-37931489.jpeg?auto=compress&cs=tinysrgb&h=350&w=350", + }, + { + name: "Pizza Margherita", + description: "San Marzano tomatoes, fior di latte, fresh basil – wood-fired at 450°C.", + price: "€16", + icon: Leaf, + image: "https://images.pexels.com/photos/5876/food-salad-healthy-vegetables.jpg?auto=compress&cs=tinysrgb&h=350&w=350", + }, + ] + + return ( + + ) +}