From 5f2c2fd0d7849e596c0d9094156edbecf07399f5 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 05:50:11 +0000 Subject: [PATCH] Bob AI: Added a 30-Day Risk-Free Trial guarantee section below the h --- src/pages/HomePage.tsx | 128 ++++--------------- src/pages/HomePage/sections/Contact.tsx | 24 ++++ src/pages/HomePage/sections/Faq.tsx | 22 ++++ src/pages/HomePage/sections/Guarantee.tsx | 25 ++++ src/pages/HomePage/sections/Hero.tsx | 30 +++++ src/pages/HomePage/sections/Results.tsx | 22 ++++ src/pages/HomePage/sections/Services.tsx | 25 ++++ src/pages/HomePage/sections/Team.tsx | 22 ++++ src/pages/HomePage/sections/Testimonials.tsx | 18 +++ 9 files changed, 213 insertions(+), 103 deletions(-) create mode 100644 src/pages/HomePage/sections/Contact.tsx create mode 100644 src/pages/HomePage/sections/Faq.tsx create mode 100644 src/pages/HomePage/sections/Guarantee.tsx create mode 100644 src/pages/HomePage/sections/Hero.tsx create mode 100644 src/pages/HomePage/sections/Results.tsx create mode 100644 src/pages/HomePage/sections/Services.tsx create mode 100644 src/pages/HomePage/sections/Team.tsx create mode 100644 src/pages/HomePage/sections/Testimonials.tsx diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 73a8d48..1f510c7 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,117 +1,39 @@ -import { ShieldCheck, Clock, Award, Heart, BadgeCheck } from "lucide-react"; +// AUTO-GENERATED shell by per-section-migrate. +// Section bodies live in .//sections/.tsx. Edit the section +// files directly. Non-block content (wrappers, non-inlinable sections) is +// preserved inline; extracted section blocks become refs. + import { StyleProvider } from "@/components/ui/StyleProvider"; import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; -import HeroOverlayMarquee from "@/components/sections/hero/HeroOverlayMarquee"; -import TeamGlassCards from "@/components/sections/team/TeamGlassCards"; -import FeaturesResultsComparison from "@/components/sections/features/FeaturesResultsComparison"; -import TestimonialTrustCard from "@/components/sections/testimonial/TestimonialTrustCard"; -import TeamOverlayCardsGrid from "@/components/sections/team/TeamOverlayCardsGrid"; -import FaqSimple from "@/components/sections/faq/FaqSimple"; -import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import React from 'react'; +import HeroSection from './HomePage/sections/Hero'; +import ServicesSection from './HomePage/sections/Services'; +import ResultsSection from './HomePage/sections/Results'; +import TestimonialsSection from './HomePage/sections/Testimonials'; +import TeamSection from './HomePage/sections/Team'; +import FaqSection from './HomePage/sections/Faq'; +import ContactSection from './HomePage/sections/Contact'; -export default function HomePage() { + +import GuaranteeSection from './HomePage/sections/Guarantee';export default function HomePage(): React.JSX.Element { return ( - + -
- -
+ + -
- -
+ -
- -
+ -
- -
+ -
- -
+ -
- -
+ -
- -
+
); -} \ No newline at end of file +} diff --git a/src/pages/HomePage/sections/Contact.tsx b/src/pages/HomePage/sections/Contact.tsx new file mode 100644 index 0000000..54f06e3 --- /dev/null +++ b/src/pages/HomePage/sections/Contact.tsx @@ -0,0 +1,24 @@ +// 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 ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; + +export default function ContactSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Faq.tsx b/src/pages/HomePage/sections/Faq.tsx new file mode 100644 index 0000000..0e83625 --- /dev/null +++ b/src/pages/HomePage/sections/Faq.tsx @@ -0,0 +1,22 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "faq" section. + +import React from 'react'; +import FaqSimple from "@/components/sections/faq/FaqSimple"; + +export default function FaqSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Guarantee.tsx b/src/pages/HomePage/sections/Guarantee.tsx new file mode 100644 index 0000000..29020df --- /dev/null +++ b/src/pages/HomePage/sections/Guarantee.tsx @@ -0,0 +1,25 @@ +import React from 'react'; +import { ShieldCheck } from 'lucide-react'; +import ScrollReveal from '@/components/ui/ScrollReveal'; + +export default function GuaranteeSection() { + return ( +
+
+ +
+
+ +
+
+

30-Day Risk-Free Trial & Money-Back Guarantee

+

+ Experience the ExoBrace difference completely risk-free. If you don't feel significant relief within 30 days, return it for a full refund. No questions asked. +

+
+
+
+
+
+ ); +} \ No newline at end of file diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx new file mode 100644 index 0000000..c87893d --- /dev/null +++ b/src/pages/HomePage/sections/Hero.tsx @@ -0,0 +1,30 @@ +// 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 { ShieldCheck, Clock, Award, Heart, BadgeCheck } from "lucide-react"; +import HeroOverlayMarquee from "@/components/sections/hero/HeroOverlayMarquee"; + +export default function HeroSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Results.tsx b/src/pages/HomePage/sections/Results.tsx new file mode 100644 index 0000000..e291cfa --- /dev/null +++ b/src/pages/HomePage/sections/Results.tsx @@ -0,0 +1,22 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "results" section. + +import React from 'react'; +import FeaturesResultsComparison from "@/components/sections/features/FeaturesResultsComparison"; + +export default function ResultsSection(): 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..2d77a54 --- /dev/null +++ b/src/pages/HomePage/sections/Services.tsx @@ -0,0 +1,25 @@ +// 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 TeamGlassCards from "@/components/sections/team/TeamGlassCards"; + +export default function ServicesSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Team.tsx b/src/pages/HomePage/sections/Team.tsx new file mode 100644 index 0000000..e6b5313 --- /dev/null +++ b/src/pages/HomePage/sections/Team.tsx @@ -0,0 +1,22 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "team" section. + +import React from 'react'; +import TeamOverlayCardsGrid from "@/components/sections/team/TeamOverlayCardsGrid"; + +export default function TeamSection(): 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..7e7f8d4 --- /dev/null +++ b/src/pages/HomePage/sections/Testimonials.tsx @@ -0,0 +1,18 @@ +// 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 TestimonialTrustCard from "@/components/sections/testimonial/TestimonialTrustCard"; + +export default function TestimonialsSection(): React.JSX.Element { + return ( +
+ +
+ ); +} -- 2.49.1