- Remove fake info@queuenorth.com, replace with contact form callout (fixes #25) - Add phone (906) 482-6616 to Contact, Support, and Footer (fixes #26) - Add Zoho support center link to Support page (fixes #27)
This commit is contained in:
parent
54dc893ec5
commit
851759ae5e
|
|
@ -49,7 +49,11 @@ const Footer = () => {
|
|||
<span className="font-bold text-lg">Queue North</span>
|
||||
</div>
|
||||
<p className="text-navy-light text-sm mb-3">{companyInfo.tagline}</p>
|
||||
<p className="text-navy-light text-sm mb-4">{companyInfo.address}</p>
|
||||
<p className="text-navy-light text-sm mb-3">{companyInfo.address}</p>
|
||||
<div className="text-navy-light text-sm mb-3">
|
||||
<p className="mb-1">Phone: (906) 482-6616</p>
|
||||
<a href="/contact" className="text-cyan hover:underline">Contact Form</a>
|
||||
</div>
|
||||
<p className="text-navy-light text-xs">© {currentYear} Queue North Technologies. All rights reserved.</p>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -121,8 +121,12 @@ const Contact = () => {
|
|||
<p className="text-soft-text">Monday - Friday: 8:00 AM - 6:00 PM CT</p>
|
||||
</div>
|
||||
<div>
|
||||
<h3 className="font-semibold text-text mb-2">Email</h3>
|
||||
<p className="text-soft-text">info@queuenorth.com</p>
|
||||
<h3 className="font-semibold text-text mb-2">Phone</h3>
|
||||
<p className="text-soft-text">(906) 482-6616</p>
|
||||
</div>
|
||||
<div>
|
||||
<h3 className="font-semibold text-text mb-2">Contact Us</h3>
|
||||
<p className="text-soft-text">Use the form on the right to get in touch with our team.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -119,6 +119,24 @@ const Support = () => {
|
|||
We provide comprehensive support for all our services, including 24/7 monitoring, rapid response, and dedicated support engineers.
|
||||
</p>
|
||||
<div className="space-y-4">
|
||||
<div>
|
||||
<h3 className="font-semibold text-text mb-2">Visit Support Center</h3>
|
||||
<a
|
||||
href="https://queuenorth.zoho.com/"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="inline-flex items-center justify-center px-4 py-2 bg-primary-navy text-white font-medium rounded-md hover:bg-navy-darker transition-colors text-sm"
|
||||
>
|
||||
Visit Support Center
|
||||
<svg className="ml-2 h-4 w-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14" />
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
<div>
|
||||
<h3 className="font-semibold text-text mb-2">Phone</h3>
|
||||
<p className="text-soft-text">(906) 482-6616</p>
|
||||
</div>
|
||||
<div>
|
||||
<h3 className="font-semibold text-text mb-2">Support Hours</h3>
|
||||
<p className="text-soft-text">24/7 Monitoring with rapid response SLAs</p>
|
||||
|
|
|
|||
Loading…
Reference in New Issue