From 4c5eccd24d0a43c9a2b38638bfaba65edaeea0e3 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 2 Jun 2026 14:41:40 +0000 Subject: [PATCH] Bob AI (approx): Expand on each beer's description with captivating tasting n --- src/pages/HomePage/sections/Beers.tsx | 130 ++++++++++++++------------ 1 file changed, 71 insertions(+), 59 deletions(-) diff --git a/src/pages/HomePage/sections/Beers.tsx b/src/pages/HomePage/sections/Beers.tsx index c9a0578..432187b 100644 --- a/src/pages/HomePage/sections/Beers.tsx +++ b/src/pages/HomePage/sections/Beers.tsx @@ -1,64 +1,76 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "beers" section. +"use client"; +import { ImageOrVideo, ScrollReveal, TextAnimation } from '@/components/ui'; -import React from 'react'; -import FeaturesRevealCardsBentoSharp from '@/components/sections/features/FeaturesRevealCardsBentoSharp'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +const beers = [ + { + name: "Mountain IPA", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/mountain-ipa.jpg", + abv: "6.5%", + ibu: "60", + description: "A vibrant, hop-forward IPA bursting with notes of pine, citrus, and a hint of tropical fruit. Its crisp bitterness is balanced by a smooth malt backbone, leading to a refreshing finish. Pairs perfectly with spicy tacos, grilled burgers, or sharp cheddar cheese." + }, + { + name: "Riverbend Lager", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/riverbend-lager.jpg", + abv: "5.0%", + ibu: "20", + description: "A clean, crisp, and exceptionally smooth lager with subtle notes of toasted grain and a delicate floral hop aroma. Its light body and refreshing character make it incredibly drinkable. Excellent with light salads, seafood, or classic pub fare like fish and chips." + }, + { + name: "Forest Stout", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/forest-stout.jpg", + abv: "7.2%", + ibu: "35", + description: "A rich and robust stout with deep flavors of roasted coffee, dark chocolate, and a hint of caramel. Its creamy texture and warming finish make it a perfect companion for cooler evenings. Ideal with hearty stews, barbecued ribs, or decadent chocolate desserts." + }, + { + name: "Sunset Wheat Ale", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/sunset-wheat-ale.jpg", + abv: "5.2%", + ibu: "15", + description: "A refreshing and hazy wheat ale with bright notes of orange peel and coriander. Its smooth, effervescent body and subtle sweetness make it perfect for a warm afternoon. Pairs wonderfully with grilled chicken, fruit tarts, or goat cheese salads." + }, + { + name: "Trailblazer Pale Ale", + imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/trailblazer-pale-ale.jpg", + abv: "5.8%", + ibu: "40", + description: "A classic American Pale Ale with a balanced hop profile, offering aromas of grapefruit and floral notes. Its medium body and crisp finish make it a versatile choice for any occasion. Great with pizza, burgers, or a variety of cheeses." + } +]; -export default function BeersSection(): React.JSX.Element { +export default function BeersSection() { return ( -
- - - +
+
+ + + + +

+ Explore our diverse selection of handcrafted beers, brewed with passion and the finest ingredients. +

+
+ +
+ {beers.map((beer, index) => ( + +
+ +

{beer.name}

+

ABV: {beer.abv} | IBU: {beer.ibu}

+

{beer.description}

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