Update src/app/pricing/page.tsx

This commit is contained in:
2026-05-12 06:34:39 +00:00
parent ffb63fe0e1
commit a23a2e4bcf

View File

@@ -24,9 +24,9 @@ export default function PricingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Features", id: "/#features" },
{ name: "Features", id: "/" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/#contact" },
{ name: "Contact", id: "/" },
]}
brandName="ViralAI"
/>
@@ -59,7 +59,7 @@ export default function PricingPage() {
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{ title: "Product", items: [{ label: "Features", href: "/#features" }, { label: "Pricing", href: "/pricing" }] },
{ title: "Product", items: [{ label: "Features", href: "/" }, { label: "Pricing", href: "/pricing" }] },
{ title: "Company", items: [{ label: "About", href: "#" }, { label: "Careers", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] },
]}