From 39754e527d32dce6b4bf068cce8315767ea901d9 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Mar 2026 03:32:50 +0000 Subject: [PATCH 1/2] Update src/app/business-detail/page.tsx --- src/app/business-detail/page.tsx | 421 ++++++++++++------------------- 1 file changed, 164 insertions(+), 257 deletions(-) diff --git a/src/app/business-detail/page.tsx b/src/app/business-detail/page.tsx index ea0b833..10354f5 100644 --- a/src/app/business-detail/page.tsx +++ b/src/app/business-detail/page.tsx @@ -2,274 +2,181 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; -import FooterBase from '@/components/sections/footer/FooterBase'; -import MetricCardTen from '@/components/sections/metrics/MetricCardTen'; +import FeatureCardFour from '@/components/sections/feature/FeatureCardFour'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import HeroCentered from '@/components/sections/hero/HeroCentered'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; +import { DollarSign, Factory, Building2 } from "lucide-react"; -export default function LandingPage() { +export default function BusinessDetailPage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
- - +
); -- 2.49.1 From 82c474e4d09d405c945248a74f61d6e7a59558fb Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Mar 2026 03:32:51 +0000 Subject: [PATCH 2/2] Update src/app/businesses/page.tsx --- src/app/businesses/page.tsx | 509 +++++++++++++++--------------------- 1 file changed, 208 insertions(+), 301 deletions(-) diff --git a/src/app/businesses/page.tsx b/src/app/businesses/page.tsx index 6bca0ae..78e162d 100644 --- a/src/app/businesses/page.tsx +++ b/src/app/businesses/page.tsx @@ -2,317 +2,224 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import FaqBase from '@/components/sections/faq/FaqBase'; import FeatureCardTen from '@/components/sections/feature/FeatureCardTen'; -import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree'; -import FooterBase from '@/components/sections/footer/FooterBase'; -import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import HeroCentered from '@/components/sections/hero/HeroCentered'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import { Bookmark, Building2, CheckCircle2, Database, Filter, History, MapPin, Users } from "lucide-react"; +import { Search, Factory } from "lucide-react"; -export default function LandingPage() { +export default function BusinessesPage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
-
- -
- -
- -
- - +
); -- 2.49.1