From 39b39afce30ae73c4fb14524b919d98b62001dad Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 14:55:31 +0000 Subject: [PATCH 1/3] Update src/App.tsx --- src/App.tsx | 306 ++-------------------------------------------------- 1 file changed, 7 insertions(+), 299 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 910333b..87e49a9 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,304 +1,12 @@ -import AboutMediaOverlay from '@/components/sections/about/AboutMediaOverlay'; -import ContactSplitEmail from '@/components/sections/contact/ContactSplitEmail'; -import FaqSimple from '@/components/sections/faq/FaqSimple'; -import FeaturesComparison from '@/components/sections/features/FeaturesComparison'; -import FooterSimpleCard from '@/components/sections/footer/FooterSimpleCard'; -import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; -import NavbarCentered from '@/components/ui/NavbarCentered'; -import PricingLayeredCards from '@/components/sections/pricing/PricingLayeredCards'; -import ProductMediaCards from '@/components/sections/product/ProductMediaCards'; -import TestimonialDetailedCards from '@/components/sections/testimonial/TestimonialDetailedCards'; +import { Routes, Route } from 'react-router-dom'; +import HomePage from './pages/HomePage'; +import BlogPage from './pages/BlogPage'; export default function App() { return ( - <> - - -
- -
- -
- -
- -
- -
- - - -
- -
- -
- -
- -
- -
- -
- -
- - - + + } /> + } /> + ); } -- 2.49.1 From 759d31482f9d609fcf7fb66bd2c114b46c948f17 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 14:55:54 +0000 Subject: [PATCH 2/3] Add src/pages/BlogPage.tsx --- src/pages/BlogPage.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/pages/BlogPage.tsx diff --git a/src/pages/BlogPage.tsx b/src/pages/BlogPage.tsx new file mode 100644 index 0000000..b31f985 --- /dev/null +++ b/src/pages/BlogPage.tsx @@ -0,0 +1,15 @@ +import BlogSimpleCards from "@/components/sections/blog/BlogSimpleCards"; +import NavbarCentered from '@/components/ui/NavbarCentered'; +import FooterSimpleCard from '@/components/sections/footer/FooterSimpleCard'; + +const BlogPage = () => { + return ( + + ); +}; + +export default BlogPage; -- 2.49.1 From c55a7dec85eda86bef74512151b7b79843725d0e Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 14:55:55 +0000 Subject: [PATCH 3/3] Update src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 322 ++++++++++++++++++++++++++++++++++++++--- 1 file changed, 303 insertions(+), 19 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index a3e7160..1aa1501 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,22 +1,306 @@ -import NavbarCentered from "@/components/ui/NavbarCentered"; -import { routes } from "@/routes"; +import AboutMediaOverlay from '@/components/sections/about/AboutMediaOverlay'; +import ContactSplitEmail from '@/components/sections/contact/ContactSplitEmail'; +import FaqSimple from '@/components/sections/faq/FaqSimple'; +import FeaturesComparison from '@/components/sections/features/FeaturesComparison'; +import FooterSimpleCard from '@/components/sections/footer/FooterSimpleCard'; +import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; +import NavbarCentered from '@/components/ui/NavbarCentered'; +import PricingLayeredCards from '@/components/sections/pricing/PricingLayeredCards'; +import ProductMediaCards from '@/components/sections/product/ProductMediaCards'; +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