diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index 552240a..2698ce7 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -1,13 +1,22 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import Link from "next/link"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; import PricingCardEight from "@/components/sections/pricing/PricingCardEight"; import FaqDouble from "@/components/sections/faq/FaqDouble"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import { CreditCard, Star, Sparkles, Crown, HelpCircle } from "lucide-react"; +import { CreditCard, HelpCircle, Star, Sparkles, Crown } from "lucide-react"; + +const PricingPage = () => { + const navItems = [ + { name: "Features", id: "features" }, + { name: "Pricing", id: "pricing" }, + { name: "About", id: "about" }, + { name: "Contact", id: "contact" }, + { name: "Blog", id: "https://blog.webild.io" }, + ]; -export default function PricingPage() { return ( + {/* Navbar */} + {/* Pricing Section */}
+ {/* FAQ Section */}
+ {/* Footer */}