diff --git a/src/App.tsx b/src/App.tsx index 9b4fb96..09763ab 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,372 +1,10 @@ -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FaqSimple from '@/components/sections/faq/FaqSimple'; -import FeaturesDetailedCards from '@/components/sections/features/FeaturesDetailedCards'; -import FooterBasic from '@/components/sections/footer/FooterBasic'; -import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial'; -import MetricsMediaCards from '@/components/sections/metrics/MetricsMediaCards'; -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 { 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..cac27ae 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,22 +1,374 @@ -import NavbarCentered from "@/components/ui/NavbarCentered"; -import { routes } from "@/routes"; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FaqSimple from '@/components/sections/faq/FaqSimple'; +import FeaturesDetailedCards from '@/components/sections/features/FeaturesDetailedCards'; +import FooterBasic from '@/components/sections/footer/FooterBasic'; +import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial'; +import MetricsMediaCards from '@/components/sections/metrics/MetricsMediaCards'; +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'; -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; + <> + + +
+ +
+ +
+
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + + + + ); +}