diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 8bafd3b..3ff2998 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,269 +1,39 @@ -import AboutTestimonial from '@/components/sections/about/AboutTestimonial'; -import ContactCta from '@/components/sections/contact/ContactCta'; -import FaqSimple from '@/components/sections/faq/FaqSimple'; -import FeaturesDetailedSteps from '@/components/sections/features/FeaturesDetailedSteps'; -import FeaturesRevealCardsBento from '@/components/sections/features/FeaturesRevealCardsBento'; -import HeroTiltedCards from '@/components/sections/hero/HeroTiltedCards'; -import TeamProfileCards from '@/components/sections/team/TeamProfileCards'; -import TestimonialMarqueeOverlayCards from '@/components/sections/testimonial/TestimonialMarqueeOverlayCards'; -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'; +import AboutSection from './HomePage/sections/About'; +import ServicesSection from './HomePage/sections/Services'; +import IndustriesSection from './HomePage/sections/Industries'; +import TeamSection from './HomePage/sections/Team'; +import TestimonialsSection from './HomePage/sections/Testimonials'; +import FaqSection from './HomePage/sections/Faq'; +import ContactSection from './HomePage/sections/Contact'; + + +{/* webild-stub @2026-06-16T15:41:04.448Z: make the website feel less static by incorporating animated backgrounds, scroll-reveal animations for all sections, and enhanced hover effects on buttons and service cards */} + +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..a261d7a --- /dev/null +++ b/src/pages/HomePage/sections/About.tsx @@ -0,0 +1,27 @@ +// 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 AboutTestimonial from '@/components/sections/about/AboutTestimonial'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import NoiseBackground from "@/components/ui/NoiseBackground"; + +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..20d2e2c --- /dev/null +++ b/src/pages/HomePage/sections/Contact.tsx @@ -0,0 +1,32 @@ +// 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"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import LightRaysCenterBackground from "@/components/ui/LightRaysCenterBackground"; + +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..57862ee --- /dev/null +++ b/src/pages/HomePage/sections/Faq.tsx @@ -0,0 +1,43 @@ +// 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'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import ColumnWaveBackground from "@/components/ui/ColumnWaveBackground"; + +export default function FaqSection(): 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..194328b --- /dev/null +++ b/src/pages/HomePage/sections/Hero.tsx @@ -0,0 +1,50 @@ +// 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'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import AuroraBackground from "@/components/ui/AuroraBackground"; + +export default function HeroSection(): React.JSX.Element { + return ( +
+ + + + + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Industries.tsx b/src/pages/HomePage/sections/Industries.tsx new file mode 100644 index 0000000..dbfcf47 --- /dev/null +++ b/src/pages/HomePage/sections/Industries.tsx @@ -0,0 +1,69 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "industries" section. + +import React from 'react'; +import FeaturesRevealCardsBento from '@/components/sections/features/FeaturesRevealCardsBento'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import GridLinesBackground from "@/components/ui/GridLinesBackground"; + +export default function IndustriesSection(): 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..52dc29a --- /dev/null +++ b/src/pages/HomePage/sections/Services.tsx @@ -0,0 +1,48 @@ +// 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 FeaturesDetailedSteps from '@/components/sections/features/FeaturesDetailedSteps'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import FloatingGradientBackground from "@/components/ui/FloatingGradientBackground"; + +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..09e4dca --- /dev/null +++ b/src/pages/HomePage/sections/Team.tsx @@ -0,0 +1,43 @@ +// 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 TeamProfileCards from '@/components/sections/team/TeamProfileCards'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import RadialGradientBackground from "@/components/ui/RadialGradientBackground"; + +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..e4d8e29 --- /dev/null +++ b/src/pages/HomePage/sections/Testimonials.tsx @@ -0,0 +1,62 @@ +// 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"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import HorizonGlowBackground from "@/components/ui/HorizonGlowBackground"; + +export default function TestimonialsSection(): React.JSX.Element { + return ( +
+ + + + + + +
+ ); +} diff --git a/src/types/scroll-reveal.d.ts b/src/types/scroll-reveal.d.ts new file mode 100644 index 0000000..91174ac --- /dev/null +++ b/src/types/scroll-reveal.d.ts @@ -0,0 +1,11 @@ +import { ReactNode } from "react"; + +declare module "@/components/ui/ScrollReveal" { + export interface ScrollRevealProps { + children: ReactNode; + variant?: "slide-up" | "fade-blur" | "fade"; + delay?: number; + className?: string; + } + export default function ScrollReveal(props: ScrollRevealProps): JSX.Element; +} \ No newline at end of file