diff --git a/src/app/page.tsx b/src/app/page.tsx index 90926e6..b67f162 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -14,10 +14,10 @@ import { Zap, TrendingUp, Phone, Calendar, Users, Heart, Rocket, Sparkles, Crown export default function HomePage() { const navItems = [ { name: "How It Works", id: "how-it-works" }, - { name: "Pricing", id: "pricing" }, + { name: "Pricing", id: "/pricing" }, { name: "Features", id: "features" }, { name: "About Us", id: "/about-us" }, - { name: "Contact", id: "contact" } + { name: "Contact", id: "/contact" } ]; return ( @@ -113,8 +113,8 @@ export default function HomePage() {
); -} \ No newline at end of file +} diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index e23eaca..fdd8859 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -4,9 +4,10 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; import PricingCardOne from "@/components/sections/pricing/PricingCardOne"; import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia"; +import FaqBase from "@/components/sections/faq/FaqBase"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import { Zap, Rocket, Sparkles, Crown } from "lucide-react"; +import { Zap, Sparkles } from "lucide-react"; export default function PricingPage() { const navItems = [ @@ -41,7 +42,7 @@ export default function PricingPage() {
@@ -90,6 +91,44 @@ export default function PricingPage() { /> +
+ +
+