diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx new file mode 100644 index 0000000..921c802 --- /dev/null +++ b/src/app/blog/page.tsx @@ -0,0 +1,100 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import BlogCardThree from '@/components/sections/blog/BlogCardThree'; +import FooterBase from '@/components/sections/footer/FooterBase'; + +export default function BlogPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx new file mode 100644 index 0000000..00f12b9 --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,113 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; +import FooterBase from '@/components/sections/footer/FooterBase'; +import { CheckCircle } from "lucide-react"; + +export default function PricingPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +}