diff --git a/src/App.tsx b/src/App.tsx
index 8b375f8..a0d9955 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -1,145 +1,10 @@
-"use client";
+import { Routes, Route } from 'react-router-dom';
+import HomePage from '@/pages/HomePage';
-import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import NavbarFloatingLogo from '@/components/ui/NavbarFloatingLogo';
-import HeroSplit from '@/components/sections/hero/HeroSplit';
-import FeaturesRevealCards from '@/components/sections/features/FeaturesRevealCards';
-import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento';
-import PricingSimpleCards from '@/components/sections/pricing/PricingSimpleCards';
-import TestimonialQuoteCards from '@/components/sections/testimonial/TestimonialQuoteCards';
-import FaqTwoColumn from '@/components/sections/faq/FaqTwoColumn';
-import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee';
-import ContactCta from '@/components/sections/contact/ContactCta';
-import FooterBrand from '@/components/sections/footer/FooterBrand';
-
-export default function LandingPage() {
+export default function App() {
return (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+ } />
+
);
}
\ No newline at end of file
diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx
index a3e7160..072b87e 100644
--- a/src/pages/HomePage.tsx
+++ b/src/pages/HomePage.tsx
@@ -1,22 +1,146 @@
-import NavbarCentered from "@/components/ui/NavbarCentered";
-import { routes } from "@/routes";
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarFloatingLogo from '@/components/ui/NavbarFloatingLogo';
+import HeroSplit from '@/components/sections/hero/HeroSplit';
+import FeaturesRevealCards from '@/components/sections/features/FeaturesRevealCards';
+import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento';
+import PricingSimpleCards from '@/components/sections/pricing/PricingSimpleCards';
+import TestimonialQuoteCards from '@/components/sections/testimonial/TestimonialQuoteCards';
+import FaqTwoColumn from '@/components/sections/faq/FaqTwoColumn';
+import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee';
+import ContactCta from '@/components/sections/contact/ContactCta';
+import FooterBrand from '@/components/sections/footer/FooterBrand';
-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;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file