diff --git a/src/app/page.tsx b/src/app/page.tsx index 4bef3a7..dc67a6e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,7 +34,8 @@ export default function LandingPage() { { name: "About", id: "about" }, { name: "Results", id: "metrics" }, { name: "Works", id: "works" }, - { name: "Testimonials", id: "testimonials" } + { name: "Testimonials", id: "testimonials" }, + { name: "Pricing", id: "/pricing" } ]} button={{ text: "Get Started", href: "#contact" @@ -321,7 +322,7 @@ export default function LandingPage() { { label: "About Us", href: "#about" }, { label: "Our Work", href: "#works" }, { label: "Testimonials", href: "#testimonials" }, - { label: "Blog", href: "#" } + { label: "Pricing", href: "/pricing" } ] }, { diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx new file mode 100644 index 0000000..e298e43 --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,125 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { Rocket, Check } from "lucide-react"; + +export default function PricingPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +}