From b7b82fb90083cbf61796bf840c4f90e3a0a996ae Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 24 Apr 2026 13:22:25 +0000 Subject: [PATCH 1/2] Update src/App.tsx --- src/App.tsx | 177 ++-------------------------------------------------- 1 file changed, 5 insertions(+), 172 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 6f0699d..09763ab 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,177 +1,10 @@ -import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit'; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FaqSimple from '@/components/sections/faq/FaqSimple'; -import FeaturesDualMedia from '@/components/sections/features/FeaturesDualMedia'; -import FooterSimple from '@/components/sections/footer/FooterSimple'; -import HeroBillboardTiltedCarousel from '@/components/sections/hero/HeroBillboardTiltedCarousel'; -import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards'; -import NavbarCentered from '@/components/ui/NavbarCentered'; -import ProductRatingCards from '@/components/sections/product/ProductRatingCards'; -import TestimonialQuoteCards from '@/components/sections/testimonial/TestimonialQuoteCards'; +import { Routes, Route } from 'react-router-dom'; +import HomePage from './pages/HomePage'; export default function App() { return ( - <> - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - - + + } /> + ); } -- 2.49.1 From 8894fc226ef68874094f48c59f5cb23150175666 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 24 Apr 2026 13:22:48 +0000 Subject: [PATCH 2/2] Update src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 195 +++++++++++++++++++++++++++++++++++++---- 1 file changed, 176 insertions(+), 19 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index a3e7160..298d5c6 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,22 +1,179 @@ -import NavbarCentered from "@/components/ui/NavbarCentered"; -import { routes } from "@/routes"; +import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FaqSimple from '@/components/sections/faq/FaqSimple'; +import FeaturesDualMedia from '@/components/sections/features/FeaturesDualMedia'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import HeroBillboardTiltedCarousel from '@/components/sections/hero/HeroBillboardTiltedCarousel'; +import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards'; +import NavbarCentered from '@/components/ui/NavbarCentered'; +import ProductRatingCards from '@/components/sections/product/ProductRatingCards'; +import TestimonialQuoteCards from '@/components/sections/testimonial/TestimonialQuoteCards'; -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