From d4cb3287cf3a65993125a611883ca569a2149e01 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 24 Apr 2026 14:01:27 +0000 Subject: [PATCH 1/2] Update src/App.tsx --- src/App.tsx | 316 +--------------------------------------------------- 1 file changed, 5 insertions(+), 311 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 52db96f..09763ab 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,316 +1,10 @@ -import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit'; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FaqSimple from '@/components/sections/faq/FaqSimple'; -import FeaturesTaggedCards from '@/components/sections/features/FeaturesTaggedCards'; -import FooterBasic from '@/components/sections/footer/FooterBasic'; -import HeroOverlay from '@/components/sections/hero/HeroOverlay'; -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 { Coffee, Heart, Leaf } from "lucide-react"; +import { Routes, Route } from 'react-router-dom'; +import HomePage from './pages/HomePage'; export default function App() { return ( - <> - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - - + + } /> + ); } -- 2.49.1 From 21f9601f3138713183374e373be4fb9ee34de512 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 24 Apr 2026 14:01:49 +0000 Subject: [PATCH 2/2] Update src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 334 ++++++++++++++++++++++++++++++++++++++--- 1 file changed, 315 insertions(+), 19 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index a3e7160..3d2353c 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,22 +1,318 @@ -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 FeaturesTaggedCards from '@/components/sections/features/FeaturesTaggedCards'; +import FooterBasic from '@/components/sections/footer/FooterBasic'; +import HeroOverlay from '@/components/sections/hero/HeroOverlay'; +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 { Coffee, Heart, Leaf } from "lucide-react"; -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