diff --git a/src/App.tsx b/src/App.tsx
index 6f0699d..09763ab 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -1,177 +1,10 @@
-import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit';
-import ContactCenter from '@/components/sections/contact/ContactCenter';
-import FaqSimple from '@/components/sections/faq/FaqSimple';
-import FeaturesDualMedia from '@/components/sections/features/FeaturesDualMedia';
-import FooterSimple from '@/components/sections/footer/FooterSimple';
-import HeroBillboardTiltedCarousel from '@/components/sections/hero/HeroBillboardTiltedCarousel';
-import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards';
-import NavbarCentered from '@/components/ui/NavbarCentered';
-import ProductRatingCards from '@/components/sections/product/ProductRatingCards';
-import TestimonialQuoteCards from '@/components/sections/testimonial/TestimonialQuoteCards';
+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..298d5c6 100644
--- a/src/pages/HomePage.tsx
+++ b/src/pages/HomePage.tsx
@@ -1,22 +1,179 @@
-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 FeaturesDualMedia from '@/components/sections/features/FeaturesDualMedia';
+import FooterSimple from '@/components/sections/footer/FooterSimple';
+import HeroBillboardTiltedCarousel from '@/components/sections/hero/HeroBillboardTiltedCarousel';
+import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards';
+import NavbarCentered from '@/components/ui/NavbarCentered';
+import ProductRatingCards from '@/components/sections/product/ProductRatingCards';
+import TestimonialQuoteCards from '@/components/sections/testimonial/TestimonialQuoteCards';
-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;
+ <>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ >
+
+ );
+}