From 8a1c54400c76cb95f1d3615766c64010b19b306e Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 18:58:29 +0000 Subject: [PATCH] Bob AI: Added credibility section with industry recognition marquee --- src/pages/HomePage.tsx | 200 +++---------------- src/pages/HomePage/sections/About.tsx | 20 ++ src/pages/HomePage/sections/Contact.tsx | 18 ++ src/pages/HomePage/sections/Credibility.tsx | 45 +++++ src/pages/HomePage/sections/Hero.tsx | 26 +++ src/pages/HomePage/sections/Metrics.tsx | 23 +++ src/pages/HomePage/sections/Properties.tsx | 38 ++++ src/pages/HomePage/sections/Services.tsx | 39 ++++ src/pages/HomePage/sections/Team.tsx | 34 ++++ src/pages/HomePage/sections/Testimonials.tsx | 46 +++++ 10 files changed, 315 insertions(+), 174 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/Credibility.tsx create mode 100644 src/pages/HomePage/sections/Hero.tsx create mode 100644 src/pages/HomePage/sections/Metrics.tsx create mode 100644 src/pages/HomePage/sections/Properties.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 9334731..46e2390 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,190 +1,42 @@ -import { StyleProvider } from "@/components/ui/StyleProvider"; -import HeroTiltedCards from "@/components/sections/hero/HeroTiltedCards"; -import AboutMediaOverlay from "@/components/sections/about/AboutMediaOverlay"; -import ProductVariantCards from "@/components/sections/product/ProductVariantCards"; -import FeaturesRevealCards from "@/components/sections/features/FeaturesRevealCards"; -import TeamOverlayCards from "@/components/sections/team/TeamOverlayCards"; -import MetricsIconCards from "@/components/sections/metrics/MetricsIconCards"; -import TestimonialSplitCards from "@/components/sections/testimonial/TestimonialSplitCards"; -import ContactCta from "@/components/sections/contact/ContactCta"; +// 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. -export default function HomePage() { +import { StyleProvider } from "@/components/ui/StyleProvider"; +import React from 'react'; +import HeroSection from './HomePage/sections/Hero'; +import AboutSection from './HomePage/sections/About'; +import PropertiesSection from './HomePage/sections/Properties'; +import ServicesSection from './HomePage/sections/Services'; +import TeamSection from './HomePage/sections/Team'; +import MetricsSection from './HomePage/sections/Metrics'; +import TestimonialsSection from './HomePage/sections/Testimonials'; +import ContactSection from './HomePage/sections/Contact'; + + +import CredibilitySection from './HomePage/sections/Credibility';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..efe0374 --- /dev/null +++ b/src/pages/HomePage/sections/About.tsx @@ -0,0 +1,20 @@ +// 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 AboutMediaOverlay from "@/components/sections/about/AboutMediaOverlay"; + +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..860d139 --- /dev/null +++ b/src/pages/HomePage/sections/Contact.tsx @@ -0,0 +1,18 @@ +// 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"; + +export default function ContactSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Credibility.tsx b/src/pages/HomePage/sections/Credibility.tsx new file mode 100644 index 0000000..d8191d8 --- /dev/null +++ b/src/pages/HomePage/sections/Credibility.tsx @@ -0,0 +1,45 @@ +import TextAnimation from '@/components/ui/TextAnimation'; +import ScrollReveal from '@/components/ui/ScrollReveal'; +import LoopCarousel from '@/components/ui/LoopCarousel'; + +export default function CredibilitySection() { + const recognitions = [ + "Forbes Global Properties", + "Christie's International Real Estate", + "The Wall Street Journal", + "Luxury Portfolio International", + "Best Luxury Brokerage 2023", + "Architectural Digest", + "Leading Real Estate Companies of the World" + ]; + + return ( +
+
+ + + +
+ +
+ +
+ {recognitions.map((item, i) => ( +
+ + {item} + +
+ ))} +
+
+
+
+ ); +} \ 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..568f903 --- /dev/null +++ b/src/pages/HomePage/sections/Hero.tsx @@ -0,0 +1,26 @@ +// 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 HeroTiltedCards from "@/components/sections/hero/HeroTiltedCards"; + +export default function HeroSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Metrics.tsx b/src/pages/HomePage/sections/Metrics.tsx new file mode 100644 index 0000000..aed611f --- /dev/null +++ b/src/pages/HomePage/sections/Metrics.tsx @@ -0,0 +1,23 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "metrics" section. + +import React from 'react'; +import MetricsIconCards from "@/components/sections/metrics/MetricsIconCards"; + +export default function MetricsSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Properties.tsx b/src/pages/HomePage/sections/Properties.tsx new file mode 100644 index 0000000..0f2728c --- /dev/null +++ b/src/pages/HomePage/sections/Properties.tsx @@ -0,0 +1,38 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "properties" section. + +import React from 'react'; +import ProductVariantCards from "@/components/sections/product/ProductVariantCards"; + +export default function PropertiesSection(): 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..1127727 --- /dev/null +++ b/src/pages/HomePage/sections/Services.tsx @@ -0,0 +1,39 @@ +// 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 FeaturesRevealCards from "@/components/sections/features/FeaturesRevealCards"; + +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..919be8d --- /dev/null +++ b/src/pages/HomePage/sections/Team.tsx @@ -0,0 +1,34 @@ +// 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 TeamOverlayCards from "@/components/sections/team/TeamOverlayCards"; + +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..fa752c3 --- /dev/null +++ b/src/pages/HomePage/sections/Testimonials.tsx @@ -0,0 +1,46 @@ +// 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 TestimonialSplitCards from "@/components/sections/testimonial/TestimonialSplitCards"; + +export default function TestimonialsSection(): React.JSX.Element { + return ( +
+ +
+ ); +} -- 2.49.1