Compare commits

...

10 Commits

Author SHA1 Message Date
kudinDmitriyUp
bc054e6f0f Bob AI: Make each badge in the hero section a different color.
## C
2026-06-02 13:32:04 +00:00
809a1cd0c1 Merge version_6_1780406242438 into main
Merge version_6_1780406242438 into main
2026-06-02 13:21:16 +00:00
kudinDmitriyUp
c85f04a2a1 Bob AI: fix build errors (attempt 1) 2026-06-02 13:20:40 +00:00
kudinDmitriyUp
58d25ae19b Bob AI: Apply different background colors to each badge within the h 2026-06-02 13:19:41 +00:00
9fce7aa7e8 Merge version_5_1780405786010 into main
Merge version_5_1780405786010 into main
2026-06-02 13:13:47 +00:00
kudinDmitriyUp
87b70ffcf0 Bob AI: fix build errors (attempt 1) 2026-06-02 13:13:11 +00:00
kudinDmitriyUp
af016b7dc8 Bob AI: Locate badge elements within the home section (assumed to be 2026-06-02 13:12:16 +00:00
d300cd9834 Merge version_4_1780405336764 into main
Merge version_4_1780405336764 into main
2026-06-02 13:06:13 +00:00
kudinDmitriyUp
e1874f6bb0 Bob AI (stub): make badges in hero sections each on in different color 2026-06-02 13:06:09 +00:00
46736ec39c Merge version_3_1780405209697 into main
Merge version_3_1780405209697 into main
2026-06-02 13:00:40 +00:00

View File

@@ -10,6 +10,9 @@ import ScrollReveal from "@/components/ui/ScrollReveal";
import GridOrCarousel from "@/components/ui/GridOrCarousel";
import FaqSimple from '@/components/sections/faq/FaqSimple';
{/* webild-stub @2026-06-02T13:06:08.765Z: make badges in hero sections each on in different color */}
export default function HomePage() {
return (
<>
@@ -27,20 +30,23 @@ export default function HomePage() {
text: "Our Story",
href: "#story",
}}
items={[
{
text: "Local Ingredients",
icon: Leaf,
},
{
text: "Sustainable Brewing",
icon: Leaf,
},
{
text: "Award-Winning",
icon: Award,
},
]}
items={[
{
text: "Local Ingredients",
icon: Leaf,
className: "bg-accent text-primary-cta-text",
},
{
text: "Sustainable Brewing",
icon: Leaf,
className: "bg-primary-cta text-primary-cta-text",
},
{
text: "Award-Winning",
icon: Award,
className: "bg-secondary-cta text-secondary-cta-text",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/morning-mountains-carpathian-ukraine-aerial-view_1153-6120.jpg"
/>
</SectionErrorBoundary>