diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 3d26602..738b9f5 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -27,6 +27,7 @@ export default function ContactPage() { { name: "Services", id: "services" }, { name: "Process", id: "process" }, { name: "For", id: "for" }, + { name: "Pricing", id: "/pricing" }, { name: "About", id: "about" }, { name: "Contact", id: "/contact" } ]} @@ -61,4 +62,4 @@ export default function ContactPage() { ); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 92bcf49..f0c81a9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,6 +34,7 @@ export default function LandingPage() { { name: "Services", id: "services" }, { name: "Process", id: "process" }, { name: "For", id: "for" }, + { name: "Pricing", id: "/pricing" }, { name: "About", id: "about" }, { name: "Contact", id: "/contact" } ]} @@ -278,4 +279,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx new file mode 100644 index 0000000..f9e5f22 --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,91 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import { DollarSign, Sparkles, Star, Zap, Rocket } from "lucide-react"; + +export default function PricingPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +}