From 2dcf30d7294a90e712b0f984f5f054b684c07dcf Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 01:04:38 +0000 Subject: [PATCH] Bob AI: Replaced layout with a blank page containing only the text T --- src/components/Layout.tsx | 63 +----- src/pages/HomePage.tsx | 309 +-------------------------- src/pages/HomePage/sections/Hero.tsx | 68 ++++++ 3 files changed, 81 insertions(+), 359 deletions(-) create mode 100644 src/pages/HomePage/sections/Hero.tsx diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 377ddd0..f2a4dc5 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -38,65 +38,8 @@ export default function Layout() { ]; return ( - - - - - -
- -
- - - -
+
+

THÉ BEST STORE

+
); } diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 57938f9..a0c38e0 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,311 +1,22 @@ -import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit'; -import ContactCta from '@/components/sections/contact/ContactCta'; -import FaqTwoColumn from '@/components/sections/faq/FaqTwoColumn'; -import FeaturesBentoGrid from '@/components/sections/features/FeaturesBentoGrid'; -import FeaturesRevealCardsBento from '@/components/sections/features/FeaturesRevealCardsBento'; -import HeroSplitVerticalMarquee from '@/components/sections/hero/HeroSplitVerticalMarquee'; -import PricingLayeredCards from '@/components/sections/pricing/PricingLayeredCards'; -import TestimonialQuoteCards from '@/components/sections/testimonial/TestimonialQuoteCards'; -import { CheckCircle, Shield, Zap } from "lucide-react"; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +// 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 React from 'react'; +import HeroSection from './HomePage/sections/Hero'; + +export default function HomePage(): 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..1b3cd32 --- /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 ( +
+ + + +
+ ); +}