diff --git a/src/app/page.tsx b/src/app/page.tsx index 00212d9..1135860 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -281,7 +281,7 @@ export default function LandingPage() { { items: [ { label: "Features", href: "#features" }, - { label: "Pricing", href: "#pricing" }, + { label: "Pricing", href: "/pricing" }, { label: "Testimonials", href: "#testimonials" }, { label: "Blog", href: "/blog" } ] diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx new file mode 100644 index 0000000..2fc22df --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,188 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; +import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; +import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { CreditCard, Sparkles, Zap, Send, Check, X } from 'lucide-react'; + +export default function PricingPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} + +import { Star } from 'lucide-react'; \ No newline at end of file