"use client"; // Needed for FAQ state import React, { useState } from "react"; import { FaMapMarkerAlt, FaPhone, FaEnvelope, FaClock, FaChevronDown, FaChevronUp, } from "react-icons/fa"; // Using Fa icons for consistency import { COLORS } from "@/constants"; // Using COLORS constant import ContactForm from "@/components/ContactForm"; // Define the structure for FAQ items interface FAQItem { id: number; question: string; answer: string; } const faqData: FAQItem[] = [ { id: 1, question: "What services does Owethu Managed Services offer?", answer: "We offer a comprehensive range of IT services including custom software development, resource augmentation (IT staffing), project management, cloud solutions, system integration, and IT consulting tailored to various industries.", }, { id: 2, question: "Which industries do you specialize in?", answer: "We have deep expertise in Financial Services & Fintech, Automotive, Technology, and Retail/E-commerce sectors, understanding the unique challenges and opportunities within each.", }, { id: 3, question: "How can I request a quote for a project?", answer: "You can request a quote by filling out the contact form on this page with details about your project requirements, calling us directly, or sending an email to hello@oms.africa. We'll get back to you promptly to discuss your needs.", }, { id: 4, question: "What are your business hours?", answer: "Our standard business hours are Monday to Friday, 8:00 AM to 5:00 PM South African Standard Time (SAST). We are closed on weekends and public holidays.", }, ]; // Contact Page Component export default function ContactPage() { const [openFaqId, setOpenFaqId] = useState(null); const toggleFaq = (id: number) => { setOpenFaqId(openFaqId === id ? null : id); }; return ( // Added dark mode base styles
{/* Hero Section - Adjusted padding for mobile */}

Get In Touch

We're here to help! Whether you have a question about our services, need assistance, or want to discuss a project, reach out and let us know.

{/* Main Content Area (Form + Info) - Adjusted padding, added dark mode */}
{/* Grid stacks vertically by default, becomes 2 columns on large screens */}
{/* Contact Information Section - Added dark mode styles */}

Contact Information

Our Office

{/* ... existing address lines ... */} Unit 10 B Centuria Park
265 Von Willich Avenue
Die Hoewes, Centurion, 0159
South Africa
View on Google Maps

Business Hours

Monday - Friday: 8:00 AM - 5:00 PM (SAST)

Weekends & Public Holidays: Closed

{/* Contact Form Section - Added dark mode styles */}

Send Us a Message

{/* Assuming ContactForm handles its own dark mode or inherits text colors */}
{/* Map Section - Adjusted padding, added dark mode, responsive height */}

Find Us Here

{/* Adjusted height for different screen sizes */}
{/* FAQ Section - Adjusted padding, added dark mode */}

Frequently Asked Questions

{faqData.map((faq) => (
{faq.answer}
))}
); }