diff --git a/src/App.tsx b/src/App.tsx index 910333b..87e49a9 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,304 +1,12 @@ -import AboutMediaOverlay from '@/components/sections/about/AboutMediaOverlay'; -import ContactSplitEmail from '@/components/sections/contact/ContactSplitEmail'; -import FaqSimple from '@/components/sections/faq/FaqSimple'; -import FeaturesComparison from '@/components/sections/features/FeaturesComparison'; -import FooterSimpleCard from '@/components/sections/footer/FooterSimpleCard'; -import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; -import NavbarCentered from '@/components/ui/NavbarCentered'; -import PricingLayeredCards from '@/components/sections/pricing/PricingLayeredCards'; -import ProductMediaCards from '@/components/sections/product/ProductMediaCards'; -import TestimonialDetailedCards from '@/components/sections/testimonial/TestimonialDetailedCards'; +import { Routes, Route } from 'react-router-dom'; +import HomePage from './pages/HomePage'; +import BlogPage from './pages/BlogPage'; export default function App() { return ( - <> - - -
- -
- -
- -
- -
- -
- - - -
- -
- -
- -
- -
- -
- -
- -
- - - + + } /> + } /> + ); } diff --git a/src/pages/BlogPage.tsx b/src/pages/BlogPage.tsx new file mode 100644 index 0000000..b31f985 --- /dev/null +++ b/src/pages/BlogPage.tsx @@ -0,0 +1,15 @@ +import BlogSimpleCards from "@/components/sections/blog/BlogSimpleCards"; +import NavbarCentered from '@/components/ui/NavbarCentered'; +import FooterSimpleCard from '@/components/sections/footer/FooterSimpleCard'; + +const BlogPage = () => { + return ( + + ); +}; + +export default BlogPage; diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index a3e7160..1aa1501 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,22 +1,306 @@ -import NavbarCentered from "@/components/ui/NavbarCentered"; -import { routes } from "@/routes"; +import AboutMediaOverlay from '@/components/sections/about/AboutMediaOverlay'; +import ContactSplitEmail from '@/components/sections/contact/ContactSplitEmail'; +import FaqSimple from '@/components/sections/faq/FaqSimple'; +import FeaturesComparison from '@/components/sections/features/FeaturesComparison'; +import FooterSimpleCard from '@/components/sections/footer/FooterSimpleCard'; +import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; +import NavbarCentered from '@/components/ui/NavbarCentered'; +import PricingLayeredCards from '@/components/sections/pricing/PricingLayeredCards'; +import ProductMediaCards from '@/components/sections/product/ProductMediaCards'; +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; + <> + + +
+ +
+ +
+ +
+ +
+ +
+ + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + + + + ); +}