diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 04d8764..8046ca1 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -2,24 +2,24 @@ import { Outlet } from 'react-router-dom'; import { StyleProvider } from '@/components/ui/StyleProvider'; import SiteBackgroundSlot from '@/components/ui/SiteBackgroundSlot'; -import NavbarFloating from "@/components/ui/NavbarFloating"; +import NavbarFloatingLogo from "@/components/ui/NavbarFloatingLogo"; import FooterBasic from "@/components/sections/footer/FooterBasic"; export default function Layout() { return ( -
diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 40eb95b..23d44c7 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,117 +1,37 @@ +// 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 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"; +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'; -export default function HomePage() { +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..fb4f70a --- /dev/null +++ b/src/pages/HomePage/sections/About.tsx @@ -0,0 +1,19 @@ +// 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..0df2f49 --- /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/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx new file mode 100644 index 0000000..47d4e40 --- /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..32a20ca --- /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..52d74ce --- /dev/null +++ b/src/pages/HomePage/sections/Properties.tsx @@ -0,0 +1,22 @@ +// 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..466bcf5 --- /dev/null +++ b/src/pages/HomePage/sections/Services.tsx @@ -0,0 +1,23 @@ +// 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..3987e1d --- /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 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..49df120 --- /dev/null +++ b/src/pages/HomePage/sections/Testimonials.tsx @@ -0,0 +1,21 @@ +// 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 ( +
+ +
+ ); +}