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() {