diff --git a/src/App.tsx b/src/App.tsx index ffc1643..ebe6a2a 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -7,115 +7,13 @@ import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards import NavbarCentered from '@/components/ui/NavbarCentered'; 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 ( - <> - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - - + + } /> + ); } \ No newline at end of file diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx new file mode 100644 index 0000000..08583f5 --- /dev/null +++ b/src/pages/HomePage.tsx @@ -0,0 +1,110 @@ +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import NavbarCentered from '@/components/ui/NavbarCentered'; +import HeroSplit from '@/components/sections/hero/HeroSplit'; +import FeaturesStatisticsCards from '@/components/sections/features/FeaturesStatisticsCards'; +import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards'; +import TestimonialDetailedCards from '@/components/sections/testimonial/TestimonialDetailedCards'; +import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee'; +import FaqSimple from '@/components/sections/faq/FaqSimple'; +import ContactCta from '@/components/sections/contact/ContactCta'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; + +export default function HomePage() { + return ( + + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +
+ ); +} \ No newline at end of file