diff --git a/src/components/sections/ServicesSection.tsx b/src/components/sections/ServicesSection.tsx new file mode 100644 index 0000000..8598dd9 --- /dev/null +++ b/src/components/sections/ServicesSection.tsx @@ -0,0 +1,67 @@ +'use client' +import Image from 'next/image' +import { Soup, UtensilsCrossed, Wine } from 'lucide-react' +import { Card, CardHeader, CardTitle, CardContent } from '@/components/ui/Card' + +export default function ServicesSection() { + const services = [ + { + icon: UtensilsCrossed, + title: 'Tapas Bar', + description: 'Over 20 varieties of traditional Spanish tapas — from patatas bravas to jamón ibérico, each prepared with time-honoured techniques.', + image: 'https://images.pexels.com/photos/37328675/pexels-photo-37328675.jpeg?auto=compress&cs=tinysrgb&h=350' + }, + { + icon: Soup, + title: 'Signature Paella', + description: 'Our Valencian paella, cooked over open fire with saffron-infused bomba rice, fresh seafood, and locally sourced vegetables.', + image: 'https://images.pexels.com/photos/37328676/pexels-photo-37328676.jpeg?auto=compress&cs=tinysrgb&h=350' + }, + { + icon: Wine, + title: 'Curated Wine Pairing', + description: 'An extensive selection of Riojas, Riberas, and Albariños personally selected by our sommelier trained in La Rioja.', + image: 'https://images.pexels.com/photos/37328677/pexels-photo-37328677.jpeg?auto=compress&cs=tinysrgb&h=350' + } + ] + + return ( +
+
+
+

La Carta

+

Our Signature Offerings

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

{service.description}

+
+
+ ) + })} +
+
+
+ ) +}