import React from "react"; import type { Metadata } from "next"; import ContactForm from "@/components/ContactForm"; import { FiMapPin, FiPhone, FiMail, FiClock } from "react-icons/fi"; // Import icons // SEO Metadata for the Contact page export const metadata: Metadata = { title: "Contact Us | Owethu Managed Services (OMS)", description: "Get in touch with Owethu Managed Services. Contact us for IT solutions, resource augmentation, project management, and custom software development inquiries.", alternates: { canonical: "/contact", }, openGraph: { title: "Contact OMS", description: "Reach out to OMS for expert IT services and solutions.", url: "https://oms.africa/contact", // Replace with your actual domain images: [ { url: "/og-image-contact.jpg", // Create a specific OG image for contact width: 1200, height: 630, alt: "Contact Owethu Managed Services", }, ], }, twitter: { card: "summary_large_image", title: "Contact OMS", description: "Get in touch with Owethu Managed Services.", images: ["/og-image-contact.jpg"], }, }; // Contact Page Component export default function ContactPage() { return (
{/* Hero Section */}

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) */}
{/* Contact Information Section */}

Contact Information

Our Office

Unit 10 B Centuria Park
265 Von Willich Avenue
Die Hoewes, Centurion, 0159
South Africa
{/* Optional: Link to Google Maps */} View on Google Maps

Business Hours

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

Weekends & Public Holidays: Closed

{/* Contact Form Section */}

Send Us a Message

{/* Optional: Map Section Placeholder */} {/*

[Embedded Map Placeholder - e.g., Google Maps iframe]

*/}
); }