From 0d26ca112195cfe3e960dcaf3a40b5cde01fc0fe Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 23 Jun 2026 08:39:04 +0000 Subject: [PATCH] Deploy --- src/components/sections/MenuSection.tsx | 95 +++++++++++++++++++++++++ 1 file changed, 95 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..5148ad8 --- /dev/null +++ b/src/components/sections/MenuSection.tsx @@ -0,0 +1,95 @@ +'use client' + +import Image from 'next/image' +import Link from 'next/link' +import Button from '@/components/ui/Button' +import { Card, CardContent, CardFooter, CardHeader, CardTitle } from '@/components/ui/Card' +import { ArrowRight } from 'lucide-react' + +const sampleItems = [ + { + id: '1', + title: 'Cape Malay Curry', + description: 'Slow-cooked lamb with apricots and fragrant spices, served with fluffy rice.', + price: 185, + currency: 'ZAR', + image: 'https://images.pexels.com/photos/23428079/pexels-photo-23428079.jpeg?auto=compress&cs=tinysrgb&h=350', + }, + { + id: '2', + title: 'Bobotie', + description: 'Classic South African baked mince with golden egg topping, served with sambal.', + price: 165, + currency: 'ZAR', + image: 'https://images.pexels.com/photos/13642135/pexels-photo-13642135.jpeg?auto=compress&cs=tinysrgb&h=350', + }, + { + id: '3', + title: 'Grilled Linefish', + description: 'Fresh line-caught fish of the day with lemon butter and seasonal vegetables.', + price: 220, + currency: 'ZAR', + image: 'https://images.pexels.com/photos/36601571/pexels-photo-36601571.jpeg?auto=compress&cs=tinysrgb&h=350', + }, + { + id: '4', + title: 'Chakalaka & Pap', + description: 'Spicy vegetable relish with creamy maize pap – a township favourite.', + price: 95, + currency: 'ZAR', + image: 'https://images.pexels.com/photos/34862400/pexels-photo-34862400.jpeg?auto=compress&cs=tinysrgb&h=350', + }, +] + +export default function MenuSection() { + return ( + + ) +} \ No newline at end of file