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 (
- <>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- >
+
+ } />
+
);
}
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;
+ <>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ >
+
+ );
+}