From 0b7db0c05d29f311e08f8cbab6748315a888d444 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 06:52:22 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 41 +++++++++++++--------------------------- 1 file changed, 13 insertions(+), 28 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index ab33b9a..74734cf 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -18,26 +18,23 @@ export default function ContactPage() { const footerColumns = [ { - title: "Services", - items: [ - { label: "Web Design", href: "/services" }, - { label: "CMS Solutions", href: "/services" }, - { label: "Custom Development", href: "/services" }, - { label: "SEO Optimization", href: "/services" }, + title: "Services", items: [ + { label: "Web Design", href: "#services" }, + { label: "CMS Solutions", href: "#services" }, + { label: "Custom Development", href: "#services" }, + { label: "SEO Optimization", href: "#services" }, ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Our Work", href: "/case-studies" }, { label: "Blog", href: "/blog" }, - { label: "Contact", href: "/contact" }, + { label: "Contact", href: "#contact" }, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Cookie Policy", href: "#" }, @@ -52,7 +49,7 @@ export default function ContactPage() { borderRadius="rounded" contentWidth="compact" sizing="medium" - background="noiseDiagonalGradient" + background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="diagonal-gradient" secondaryButtonStyle="glass" @@ -71,25 +68,13 @@ export default function ContactPage() {