From a26cb3da354fae07d05587b1bdddf096b044baa9 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Fri, 27 Mar 2026 14:07:04 +0000 Subject: [PATCH] Bob AI: Add a new logo cloud section. It should feature a glasmorphi --- src/app/page.tsx | 14 +++++ .../logocloud/LogoCloudGlassmorphic.tsx | 56 +++++++++++++++++++ 2 files changed, 70 insertions(+) create mode 100644 src/components/sections/logocloud/LogoCloudGlassmorphic.tsx diff --git a/src/app/page.tsx b/src/app/page.tsx index f82ab8e..f88d29c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,6 +6,7 @@ import FaqBase from '@/components/sections/faq/FaqBase'; import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FooterCard from '@/components/sections/footer/FooterCard'; import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; +import LogoCloudGlassmorphic from "@/components/sections/logocloud/LogoCloudGlassmorphic"; import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; @@ -106,6 +107,19 @@ export default function LandingPage() { /> +
+ +
+
+
+
+ {badgeText} +
+
+ {logos.map((logo, index) => ( + {logo.alt} + ))} +
+
+ + ); +} \ No newline at end of file -- 2.49.1