diff --git a/src/App.tsx b/src/App.tsx
index 1ed2a5f..09763ab 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -1,274 +1,10 @@
-import AboutTextSplit from '@/components/sections/about/AboutTextSplit';
-import ContactCta from '@/components/sections/contact/ContactCta';
-import FaqTwoColumn from '@/components/sections/faq/FaqTwoColumn';
-import FooterBrandReveal from '@/components/sections/footer/FooterBrandReveal';
-import HeroBrandCarousel from '@/components/sections/hero/HeroBrandCarousel';
-import MetricsMinimalCards from '@/components/sections/metrics/MetricsMinimalCards';
-import NavbarCentered from '@/components/ui/NavbarCentered';
-import ProductQuantityCards from '@/components/sections/product/ProductQuantityCards';
-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..533df73 100644
--- a/src/pages/HomePage.tsx
+++ b/src/pages/HomePage.tsx
@@ -1,22 +1,276 @@
-import NavbarCentered from "@/components/ui/NavbarCentered";
-import { routes } from "@/routes";
+import AboutTextSplit from '@/components/sections/about/AboutTextSplit';
+import ContactCta from '@/components/sections/contact/ContactCta';
+import FaqTwoColumn from '@/components/sections/faq/FaqTwoColumn';
+import FooterBrandReveal from '@/components/sections/footer/FooterBrandReveal';
+import HeroBrandCarousel from '@/components/sections/hero/HeroBrandCarousel';
+import MetricsMinimalCards from '@/components/sections/metrics/MetricsMinimalCards';
+import NavbarCentered from '@/components/ui/NavbarCentered';
+import ProductQuantityCards from '@/components/sections/product/ProductQuantityCards';
+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;
+ <>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ >
+
+ );
+}