From 9530a476b108696e09eb425fe7fbc8ad13e48276 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 29 Apr 2026 16:02:46 +0000 Subject: [PATCH 1/2] Update src/App.tsx --- src/App.tsx | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 33d15f9..340652e 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,13 +1,14 @@ +import React from 'react'; import { Routes, Route } from 'react-router-dom'; -import Layout from './components/Layout'; -import HomePage from './pages/HomePage'; +import HomePage from '@/pages/HomePage'; +import Layout from '@/components/Layout'; export default function App() { return ( - - }> + + } /> - - + + ); -} +} \ No newline at end of file -- 2.49.1 From 03e3c3bbfbfaedbfcf30fad178caf2205ecb5ef7 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 29 Apr 2026 16:02:47 +0000 Subject: [PATCH 2/2] Update src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 113 +++++++++++++++++++++++++++++++++-------- 1 file changed, 91 insertions(+), 22 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 04d9cfb..cec5afd 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,19 +1,34 @@ -import AboutMediaOverlay from '@/components/sections/about/AboutMediaOverlay'; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; -import FeaturesDualMedia from '@/components/sections/features/FeaturesDualMedia'; +import React from 'react'; +import NavbarDropdown from '@/components/ui/NavbarDropdown'; import HeroBrand from '@/components/sections/hero/HeroBrand'; -import MetricsMinimalCards from '@/components/sections/metrics/MetricsMinimalCards'; +import AboutMediaOverlay from '@/components/sections/about/AboutMediaOverlay'; +import FeaturesDualMedia from '@/components/sections/features/FeaturesDualMedia'; import ProductMediaCards from '@/components/sections/product/ProductMediaCards'; -import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee'; +import MetricsMinimalCards from '@/components/sections/metrics/MetricsMinimalCards'; import TestimonialOverlayCards from '@/components/sections/testimonial/TestimonialOverlayCards'; +import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee'; +import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterBasic from '@/components/sections/footer/FooterBasic'; +import { Coffee, Droplets, Leaf } from 'lucide-react'; export default function HomePage() { return ( - <> +
+
-
-
-
-
- +
- +
- +
- +
- +
- +
); -} +} \ No newline at end of file -- 2.49.1