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