diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx
index 656f7e3..e038f7f 100644
--- a/src/app/pricing/page.tsx
+++ b/src/app/pricing/page.tsx
@@ -4,22 +4,22 @@ import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
-import PricingCardOne from "@/components/sections/pricing/PricingCardOne";
+import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import { Zap, Rocket, Sparkles, Crown } from "lucide-react";
export default function PricingPage() {
const navItems = [
- { name: "How It Works", id: "how-it-works" },
- { name: "Services", id: "services" },
- { name: "Pricing", id: "pricing" },
- { name: "Contact", id: "contact" },
+ { name: "Home", id: "/" },
+ { name: "How It Works", id: "/how-it-works" },
+ { name: "Services", id: "/services" },
+ { name: "Pricing", id: "/pricing" },
+ { name: "Contact", id: "/contact" },
];
const footerColumns = [
{
- title: "Product",
- items: [
+ title: "Product", items: [
{ label: "Features", href: "#" },
{ label: "Pricing", href: "/pricing" },
{ label: "Security", href: "#" },
@@ -27,8 +27,7 @@ export default function PricingPage() {
],
},
{
- title: "Company",
- items: [
+ title: "Company", items: [
{ label: "About", href: "/about" },
{ label: "Blog", href: "#" },
{ label: "Contact", href: "/contact" },
@@ -36,8 +35,7 @@ export default function PricingPage() {
],
},
{
- title: "Industries",
- items: [
+ title: "Industries", items: [
{ label: "Dental Practices", href: "/industries" },
{ label: "Salons & Spas", href: "/industries" },
{ label: "Restaurants", href: "/industries" },
@@ -45,8 +43,7 @@ export default function PricingPage() {
],
},
{
- title: "Legal",
- items: [
+ title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },
@@ -71,7 +68,7 @@ export default function PricingPage() {