From 4f18ab6c181661af1237cb218eaade617fbe56e7 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 18:00:15 +0000 Subject: [PATCH] Update src/app/signup/page.tsx --- src/app/signup/page.tsx | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/app/signup/page.tsx b/src/app/signup/page.tsx index f5fcec7..4e67b22 100644 --- a/src/app/signup/page.tsx +++ b/src/app/signup/page.tsx @@ -7,14 +7,14 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import TextAbout from '@/components/sections/about/TextAbout'; const commonNavItems = [ - { name: "Home", href: "/" }, - { name: "Features", href: "#features" }, - { name: "Pricing", href: "#pricing" }, - { name: "Testimonials", href: "#testimonials" }, - { name: "FAQ", href: "#faq" }, - { name: "Contact", href: "#contact" }, - { name: "Login", href: "/login" }, - { name: "Signup", href: "/signup" } + { name: "Home", id: "/" }, + { name: "Features", id: "#features" }, + { name: "Pricing", id: "#pricing" }, + { name: "Testimonials", id: "#testimonials" }, + { name: "FAQ", id: "#faq" }, + { name: "Contact", id: "#contact" }, + { name: "Login", id: "/login" }, + { name: "Signup", id: "/signup" } ]; const commonFooterColumns = [ @@ -79,7 +79,6 @@ export default function SignupPage() {