diff --git a/src/components/sections/ServicesSection.tsx b/src/components/sections/ServicesSection.tsx new file mode 100644 index 0000000..6eb2024 --- /dev/null +++ b/src/components/sections/ServicesSection.tsx @@ -0,0 +1,76 @@ +import Image from 'next/image' +import { Card, CardHeader, CardTitle, CardContent, CardFooter } from '@/components/ui/Card' +import Button from '@/components/ui/Button' +import { ChefHat, ShoppingBag, UtensilsCrossed } from 'lucide-react' + +export default function ServicesSection() { + const services = [ + { + icon: UtensilsCrossed, + title: 'Dine-In Experience', + description: 'Relax in our warm, spice-scented dining room. Each table is set for conversation and flavour — from fragrant biryanis to slow-simmered daals.', + image: 'https://images.pexels.com/photos/37102485/pexels-photo-37102485.jpeg?auto=compress&cs=tinysrgb&h=350&w=400', + cta: 'View Menu' + }, + { + icon: ShoppingBag, + title: 'Takeaway & Delivery', + description: 'Our signature curries travel as well as they taste. Order online for quick pickup or free delivery within the Berea and Morningside suburbs.', + image: 'https://images.pexels.com/photos/19116639/pexels-photo-19116639.jpeg?auto=compress&cs=tinysrgb&h=350&w=400', + cta: 'Order Now' + }, + { + icon: ChefHat, + title: 'Catering & Events', + description: 'We bring Durban Curry to your gathering — from intimate family celebrations to corporate lunches. Custom menus with traditional and fusion dishes.', + image: 'https://images.pexels.com/photos/104884/pexels-photo-104884.jpeg?auto=compress&cs=tinysrgb&h=350&w=400', + cta: 'Get a Quote' + } + ] + + return ( +
+
+
+ Our Offerings +

Serving Durban with Love & Spice

+

+ Whether you dine in, take away, or celebrate with us — every meal is crafted with locally sourced ingredients and generations of family tradition. +

+
+
+ {services.map((service, index) => { + const Icon = service.icon + return ( + +
+ {service.title} +
+ +
+ + {service.title} +
+
+ +

{service.description}

+
+ + + +
+ ) + })} +
+
+
+ ) +} \ No newline at end of file