From e22586758b9ca06a5cb0f03c51756b844235826b Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 29 Jun 2026 13:18:35 +0000 Subject: [PATCH 1/4] Bob AI: Rename platform to MADAR in navbar --- src/components/Layout.tsx | 2 +- src/pages/HomePage.tsx | 347 ++---------------- src/pages/HomePage/sections/About.tsx | 39 ++ src/pages/HomePage/sections/Contact.tsx | 27 ++ .../HomePage/sections/FactoryBenefits.tsx | 34 ++ src/pages/HomePage/sections/Hero.tsx | 68 ++++ src/pages/HomePage/sections/HowItWorks.tsx | 37 ++ src/pages/HomePage/sections/Pricing.tsx | 52 +++ .../HomePage/sections/ProviderBenefits.tsx | 37 ++ src/pages/HomePage/sections/Services.tsx | 57 +++ src/pages/HomePage/sections/Testimonials.tsx | 57 +++ 11 files changed, 435 insertions(+), 322 deletions(-) create mode 100644 src/pages/HomePage/sections/About.tsx create mode 100644 src/pages/HomePage/sections/Contact.tsx create mode 100644 src/pages/HomePage/sections/FactoryBenefits.tsx create mode 100644 src/pages/HomePage/sections/Hero.tsx create mode 100644 src/pages/HomePage/sections/HowItWorks.tsx create mode 100644 src/pages/HomePage/sections/Pricing.tsx create mode 100644 src/pages/HomePage/sections/ProviderBenefits.tsx create mode 100644 src/pages/HomePage/sections/Services.tsx create mode 100644 src/pages/HomePage/sections/Testimonials.tsx diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index d15c9ad..2c193dd 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,7 +43,7 @@ export default function Layout() { /sections/.tsx. Edit the section +// files directly. Non-block content (wrappers, non-inlinable sections) is +// preserved inline; extracted section blocks become refs. -export default function HomePage() { +import React from 'react'; +import HeroSection from './HomePage/sections/Hero'; +import AboutSection from './HomePage/sections/About'; +import ServicesSection from './HomePage/sections/Services'; +import HowItWorksSection from './HomePage/sections/HowItWorks'; +import FactoryBenefitsSection from './HomePage/sections/FactoryBenefits'; +import ProviderBenefitsSection from './HomePage/sections/ProviderBenefits'; +import TestimonialsSection from './HomePage/sections/Testimonials'; +import PricingSection from './HomePage/sections/Pricing'; +import ContactSection from './HomePage/sections/Contact'; + +export default function HomePage(): React.JSX.Element { return ( - <> -
- - - -
+<> + -
- - - -
+ -
- - - -
+ -
- - - -
+ -
- - - -
+ -
- - - -
+ -
- - - -
+ -
- - - -
+ -
- - - -
+ ); } diff --git a/src/pages/HomePage/sections/About.tsx b/src/pages/HomePage/sections/About.tsx new file mode 100644 index 0000000..fb28131 --- /dev/null +++ b/src/pages/HomePage/sections/About.tsx @@ -0,0 +1,39 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "about" section. + +import React from 'react'; +import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit'; +import { Globe, Shield, Zap } from "lucide-react"; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function AboutSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Contact.tsx b/src/pages/HomePage/sections/Contact.tsx new file mode 100644 index 0000000..08333d3 --- /dev/null +++ b/src/pages/HomePage/sections/Contact.tsx @@ -0,0 +1,27 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "contact" section. + +import React from 'react'; +import ContactCta from '@/components/sections/contact/ContactCta'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function ContactSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/FactoryBenefits.tsx b/src/pages/HomePage/sections/FactoryBenefits.tsx new file mode 100644 index 0000000..ad6ae20 --- /dev/null +++ b/src/pages/HomePage/sections/FactoryBenefits.tsx @@ -0,0 +1,34 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "factory-benefits" section. + +import React from 'react'; +import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function FactoryBenefitsSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx new file mode 100644 index 0000000..2d23e78 --- /dev/null +++ b/src/pages/HomePage/sections/Hero.tsx @@ -0,0 +1,68 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "hero" section. + +import React from 'react'; +import HeroSplitVerticalMarquee from '@/components/sections/hero/HeroSplitVerticalMarquee'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function HeroSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/HowItWorks.tsx b/src/pages/HomePage/sections/HowItWorks.tsx new file mode 100644 index 0000000..a7fc658 --- /dev/null +++ b/src/pages/HomePage/sections/HowItWorks.tsx @@ -0,0 +1,37 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "how-it-works" section. + +import React from 'react'; +import FeaturesMediaCards from '@/components/sections/features/FeaturesMediaCards'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function HowItWorksSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Pricing.tsx b/src/pages/HomePage/sections/Pricing.tsx new file mode 100644 index 0000000..6aa0c03 --- /dev/null +++ b/src/pages/HomePage/sections/Pricing.tsx @@ -0,0 +1,52 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "pricing" section. + +import React from 'react'; +import PricingSimpleCards from '@/components/sections/pricing/PricingSimpleCards'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function PricingSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/ProviderBenefits.tsx b/src/pages/HomePage/sections/ProviderBenefits.tsx new file mode 100644 index 0000000..57d9a4f --- /dev/null +++ b/src/pages/HomePage/sections/ProviderBenefits.tsx @@ -0,0 +1,37 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "provider-benefits" section. + +import React from 'react'; +import TeamOverlayCards from '@/components/sections/team/TeamOverlayCards'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function ProviderBenefitsSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Services.tsx b/src/pages/HomePage/sections/Services.tsx new file mode 100644 index 0000000..96a9113 --- /dev/null +++ b/src/pages/HomePage/sections/Services.tsx @@ -0,0 +1,57 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "services" section. + +import React from 'react'; +import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function ServicesSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Testimonials.tsx b/src/pages/HomePage/sections/Testimonials.tsx new file mode 100644 index 0000000..d4c7f92 --- /dev/null +++ b/src/pages/HomePage/sections/Testimonials.tsx @@ -0,0 +1,57 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "testimonials" section. + +import React from 'react'; +import TestimonialMarqueeOverlayCards from '@/components/sections/testimonial/TestimonialMarqueeOverlayCards'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function TestimonialsSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} From 9b5b19407f72923ea1052d6020d25144ad13d51c Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 29 Jun 2026 13:18:44 +0000 Subject: [PATCH 2/4] Bob AI: Rename platform to MADAR in footer --- src/components/Layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 2c193dd..f89d38b 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -55,7 +55,7 @@ export default function Layout() { Date: Mon, 29 Jun 2026 13:19:14 +0000 Subject: [PATCH 3/4] Bob AI: Update pricing tiers to 90, 150, 300 and add commission logi --- src/pages/HomePage/sections/Pricing.tsx | 41 +++---------------------- 1 file changed, 5 insertions(+), 36 deletions(-) diff --git a/src/pages/HomePage/sections/Pricing.tsx b/src/pages/HomePage/sections/Pricing.tsx index 6aa0c03..c51bd12 100644 --- a/src/pages/HomePage/sections/Pricing.tsx +++ b/src/pages/HomePage/sections/Pricing.tsx @@ -10,42 +10,11 @@ export default function PricingSection(): React.JSX.Element {
+ tag="Flexible Pricing" + title="Plans That Scale With You" + description="Choose the right tier for your factory's growth journey." + plans={[{"price":"SAR 90/mo","features":["Basic support","Standard listing","2% commission on deals > 5000"],"tag":"Starter","description":"Essential access for small workshops."},{"price":"SAR 150/mo","features":["Verified service priority","Dedicated account manager","2% commission on deals > 5000"],"tag":"Pro","description":"Best for growing industrial sites."},{"features":["Unlimited access","Priority 24/7 support","Advanced predictive data","2% commission on deals > 5000"],"price":"SAR 300/mo","description":"Tailored for large industrial complexes.","tag":"Enterprise"}]} + />
); From ba466880b063e91a70f7f331a0934c73d6cfe516 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 29 Jun 2026 13:20:03 +0000 Subject: [PATCH 4/4] Bob AI: Add Trusted By logo bar below hero --- src/pages/HomePage.tsx | 4 +++- src/pages/HomePage/sections/TrustedBy.tsx | 27 +++++++++++++++++++++++ 2 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 src/pages/HomePage/sections/TrustedBy.tsx diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 25dd78e..df703ac 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -14,10 +14,12 @@ import TestimonialsSection from './HomePage/sections/Testimonials'; import PricingSection from './HomePage/sections/Pricing'; import ContactSection from './HomePage/sections/Contact'; -export default function HomePage(): React.JSX.Element { + +import TrustedBySection from './HomePage/sections/TrustedBy';export default function HomePage(): React.JSX.Element { return ( <> + diff --git a/src/pages/HomePage/sections/TrustedBy.tsx b/src/pages/HomePage/sections/TrustedBy.tsx new file mode 100644 index 0000000..d571262 --- /dev/null +++ b/src/pages/HomePage/sections/TrustedBy.tsx @@ -0,0 +1,27 @@ + +export default function TrustedBySection() { + const logos = [ + "SABIC", + "Aramco", + "Ma'aden", + "Tasnee", + "Zamil Industrial" + ]; + + return ( +
+
+

+ Trusted by leading factories across Saudi Arabia +

+
+ {logos.map((logo, index) => ( +
+ {logo} +
+ ))} +
+
+
+ ); +}