From 5e91a9e6c2ffaac0dab9bb5fd3b8dd69b0276a28 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 24 Apr 2026 11:03:14 +0000 Subject: [PATCH 1/2] Update src/App.tsx --- src/App.tsx | 372 +--------------------------------------------------- 1 file changed, 5 insertions(+), 367 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 9b4fb96..09763ab 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,372 +1,10 @@ -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FaqSimple from '@/components/sections/faq/FaqSimple'; -import FeaturesDetailedCards from '@/components/sections/features/FeaturesDetailedCards'; -import FooterBasic from '@/components/sections/footer/FooterBasic'; -import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial'; -import MetricsMediaCards from '@/components/sections/metrics/MetricsMediaCards'; -import NavbarCentered from '@/components/ui/NavbarCentered'; -import ProductRatingCards from '@/components/sections/product/ProductRatingCards'; -import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee'; -import TestimonialDetailedCards from '@/components/sections/testimonial/TestimonialDetailedCards'; +import { Routes, Route } from 'react-router-dom'; +import HomePage from './pages/HomePage'; export default function App() { return ( - <> - - -
- -
- -
-
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - - + + } /> + ); } -- 2.49.1 From 7faa88d8fbe876e35ffd2533e8fc0f2e839da1a0 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 24 Apr 2026 11:03:37 +0000 Subject: [PATCH 2/2] Update src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 390 +++++++++++++++++++++++++++++++++++++++-- 1 file changed, 371 insertions(+), 19 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index a3e7160..cac27ae 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,22 +1,374 @@ -import NavbarCentered from "@/components/ui/NavbarCentered"; -import { routes } from "@/routes"; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FaqSimple from '@/components/sections/faq/FaqSimple'; +import FeaturesDetailedCards from '@/components/sections/features/FeaturesDetailedCards'; +import FooterBasic from '@/components/sections/footer/FooterBasic'; +import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial'; +import MetricsMediaCards from '@/components/sections/metrics/MetricsMediaCards'; +import NavbarCentered from '@/components/ui/NavbarCentered'; +import ProductRatingCards from '@/components/sections/product/ProductRatingCards'; +import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee'; +import TestimonialDetailedCards from '@/components/sections/testimonial/TestimonialDetailedCards'; -const HomePage = () => { +export default function HomePage() { return ( -
- ({ name: r.label, href: r.path }))} - ctaButton={{ text: "Get Started", href: "#" }} - /> -
-

Welcome

-

- Your website content will appear here. -

-
-
- ); -}; -export default HomePage; + <> + + +
+ +
+ +
+
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + + + + ); +} -- 2.49.1