import React, { useEffect } from 'react'; import { motion } from 'framer-motion'; import SEO from '../../components/SEO'; import { useContactForm } from '../hooks/useContactForm'; const ContactPage: React.FC = () => { const { errorMessage, hasError, isSubmitted, isSubmitting, resetFeedback, submitContactForm } = useContactForm(); useEffect(() => { window.scrollTo(0, 0); }, []); const faqs = [ { q: 'How quickly can you start?', a: 'Most assessments can begin within 48 hours of contact. Emergency support is available 24/7.' }, { q: 'How do you price services?', a: 'Transparent monthly pricing based on devices and services needed. No hidden fees or surprise charges.' }, { q: 'What\'s included in support?', a: '24/7 monitoring, helpdesk, proactive maintenance, security updates, and SLA guarantees.' }, ]; return ( <>
{/* Hero */}

Let's talk about
your IT needs

Ready to improve your technology? We're here to help. Get started with a free consultation and see how we can make your IT work better for you.

{/* Left: Contact Form */}

Send us a message

{isSubmitted && (

Thanks. Your message was sent successfully. If you need immediate help, email us at info@bayareaaffiliates.com.

)} {hasError && (

{errorMessage}

)}
{/* Right: FAQ & Info */} {/* Contact Info */}
call

Phone

(361) 765-8400

location_on

Address

1001 Blucher St,
Corpus Christi, TX 78401

Hours & Area

Mon - Fri: 8:00 AM - 6:00 PM

(Emergency support: 24/7)

Service Area: Corpus Christi & the Coastal Bend (including Portland, Rockport, Aransas Pass, Kingsville, Port Aransas)

{/* FAQ */}

Quick Answers

{faqs.map((faq, index) => (

{faq.q}

{faq.a}

))}
{/* What Happens Next Section */}

What happens next?

{[ { step: '01', title: 'We respond quickly', description: 'Get a response within 24 hours, usually much faster.' }, { step: '02', title: 'Free consultation', description: '20-minute call to understand your needs and challenges.' }, { step: '03', title: 'Custom proposal', description: 'Tailored solution with clear next steps and pricing.' } ].map((item, index) => (
{item.step}
{index === 0 ? 'schedule_send' : index === 1 ? 'phone_in_talk' : 'contract_edit'}

{item.title}

{item.description}

))}
{/* Service Area Section */}

Our Service Area

Proudly serving Corpus Christi, Portland, Rockport, Aransas Pass, Kingsville, Port Aransas, and the entire Coastal Bend region.

{['Corpus Christi', 'Portland', 'Rockport', 'Aransas Pass', 'Kingsville', 'Port Aransas'].map((city) => (
location_on {city}
))}
); }; export default ContactPage;