From 35aaa639ecebba62a1a19bcf4b0b2babb2da527e Mon Sep 17 00:00:00 2001 From: null Date: Tue, 12 May 2026 02:39:35 -0500 Subject: [PATCH] =?UTF-8?q?feat:=20Phase=203=20Batch=203=20=E2=80=94=20hea?= =?UTF-8?q?der/footer/mobilenav=20polish=20+=20fix=20Button.jsx=20TS=20gen?= =?UTF-8?q?erics=20(v0.3.3)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Sticky dark navy header with clean nav and CTA - Reorganized MobileNav with Primary/Services/Industries sections - Dark navy footer with cyan accent headers - Added navy-light color token - Fixed Button.jsx: removed TypeScript generic syntax that broke esbuild - Replaced asChild Button usage with styled anchor tags --- package.json | 2 +- src/components/layout/Footer.jsx | 35 +++++----- src/components/layout/Header.jsx | 19 +++--- src/components/layout/MobileNav.jsx | 99 +++++++++++++++++++++++------ src/components/ui/Button.jsx | 12 +--- tailwind.config.js | 1 + 6 files changed, 110 insertions(+), 58 deletions(-) diff --git a/package.json b/package.json index 0b0f21d..830f74d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "queuenorth-website", "private": true, - "version": "0.3.2", + "version": "0.3.3", "type": "module", "scripts": { "dev": "concurrently \"vite\" \"node server/index.js\"", diff --git a/src/components/layout/Footer.jsx b/src/components/layout/Footer.jsx index 49b4b53..21bca5c 100644 --- a/src/components/layout/Footer.jsx +++ b/src/components/layout/Footer.jsx @@ -1,6 +1,12 @@ const Footer = () => { const currentYear = new Date().getFullYear() + const companyInfo = { + name: 'Queue North', + tagline: 'Modern communications infrastructure without the vendor noise.', + address: 'Your trusted partner in UCaaS, Contact Center, and infrastructure solutions.', + } + const quickLinks = [ { name: 'Home', href: '/' }, { name: 'Services', href: '/services' }, @@ -31,34 +37,31 @@ const Footer = () => { return (