From 98594469cc68633c3d7233d93d54b7b0ff2e3459 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 15:01:04 +0000 Subject: [PATCH 1/4] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 176 +++++++++++---------------------------- 1 file changed, 49 insertions(+), 127 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index ce1b594..c631451 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -12,10 +12,10 @@ import { Rocket, HelpCircle, Award } from "lucide-react"; export default function ContactPage() { const navItems = [ { name: "Home", id: "/" }, - { name: "Services", id: "services" }, - { name: "Pricing", id: "pricing" }, - { name: "Features", id: "features" }, - { name: "Contact", id: "contact" }, + { name: "Services", id: "/services" }, + { name: "Pricing", id: "/pricing" }, + { name: "Features", id: "#features" }, + { name: "Contact", id: "#contact" }, ]; const handleNavClick = (id: string) => { @@ -31,7 +31,7 @@ export default function ContactPage() { borderRadius="pill" contentWidth="mediumLarge" sizing="largeSmallSizeLargeTitles" - background="noiseDiagonalGradient" + background="circleGradient" cardStyle="glass-depth" primaryButtonStyle="diagonal-gradient" secondaryButtonStyle="glass" @@ -42,9 +42,7 @@ export default function ContactPage() { navItems={navItems} brandName="JunkClear" button={{ - text: "Get Started", - href: "https://app.junkclear.com/signup", - }} + text: "Get Started", href: "https://app.junkclear.com/signup"}} /> @@ -52,7 +50,7 @@ export default function ContactPage() {