diff --git a/src/components/sections/WineSection.tsx b/src/components/sections/WineSection.tsx new file mode 100644 index 0000000..f290f79 --- /dev/null +++ b/src/components/sections/WineSection.tsx @@ -0,0 +1,82 @@ +'use client' + +import Image from 'next/image' +import { BookOpen, MapPin, Wine } from 'lucide-react' + +export default function WineSection() { + const wines = [ + { + region: 'Tuscany', + varietal: 'Brunello di Montalcino', + notes: 'Aged 5 years in Slavonian oak. Intense ruby red with aromas of ripe cherry, tobacco, and leather. Pair with wild boar ragù or aged pecorino.', + image: 'https://images.pexels.com/photos/7491886/pexels-photo-7491886.jpeg?auto=compress&cs=tinysrgb&h=350', + }, + { + region: 'Piedmont', + varietal: 'Barolo DOCG', + notes: "Nebbiolo grapes from the Serralunga d'Alba commune. Ethereal rose, violet, and truffle notes. Perfect with braised beef or truffle risotto.", + image: 'https://images.pexels.com/photos/7491886/pexels-photo-7491886.jpeg?auto=compress&cs=tinysrgb&h=350', + }, + { + region: 'Veneto', + varietal: 'Amarone della Valpolicella', + notes: 'Appassimento method concentrates dried fruit, chocolate, and spice. Full-bodied, velvety tannins. Ideal with aged cheeses or roasted lamb.', + image: 'https://images.pexels.com/photos/7491886/pexels-photo-7491886.jpeg?auto=compress&cs=tinysrgb&h=350', + }, + ] + + return ( +
+
+
+
+ +
+

+ La Villa Wine Collection +

+

+ Curated by our head sommelier, each bottle tells a story of Italian terroir +

+
+ +
+ {wines.map((wine, idx) => ( +
+
+ {`${wine.varietal} +
+
+
+ + {wine.region} +
+

{wine.varietal}

+

{wine.notes}

+
+ + Sommelier's pick +
+
+
+ ))} +
+ +
+

+ Our wine list features over 150 labels from all 20 Italian regions, with exclusive vertical tastings available for private events. Ask your server for a pairing recommendation. +

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