import Image from "next/image"; import Link from "next/link"; import { Metadata } from "next"; import { FaArrowRight, FaBriefcase, FaCogs, FaHandshake, FaLaptopCode, FaProjectDiagram, FaUsers, FaWrench, FaShippingFast, } from "react-icons/fa"; import { COLORS } from "@/constants"; // Assuming COLORS constant is available // SEO Metadata export const metadata: Metadata = { title: "IT Services & Solutions | OMS South Africa", description: "Explore IT services by Owethu Managed Services (OMS): Custom Software Development, IT Resource Augmentation, and the OBSE Bank Statement Extractor. Partner with us for innovative solutions.", keywords: [ "IT services South Africa", "custom software development", "IT resource augmentation", "managed IT services", "OBSE", "CVEvolve", "bank statement extractor", "bank statement automation", "fintech solutions", "IT consulting", "OMS", "Owethu Managed Services", "Centurion", "Gauteng", ], openGraph: { title: "Comprehensive IT Services & Solutions | OMS South Africa", description: "OMS offers tailored IT solutions including custom development, resource augmentation, and specialized products like OBSE.", url: "https://oms.africa/services", // Update with the final URL images: [ { url: "/images/oms-services-og.png", // Replace with an appropriate OG image URL width: 1200, height: 630, alt: "OMS IT Services", }, ], locale: "en_ZA", type: "website", }, twitter: { card: "summary_large_image", title: "Comprehensive IT Services & Solutions | OMS South Africa", description: "Partner with OMS for expert IT services, from custom builds to resource scaling.", // images: ['/images/oms-services-twitter.png'], // Replace if needed }, }; // Data for Service Areas const serviceAreas = [ { title: "Custom Software Development & Consulting", icon: FaLaptopCode, description: "We design, build, and implement bespoke software solutions tailored to your unique business challenges and objectives. Our consulting services help align technology with your strategic goals.", imageUrl: "/images/team.svg", // Reusing image from About link: "/contact?subject=Custom Development Inquiry", // Link to contact or a future dedicated page linkText: "Discuss Your Project", }, { title: "IT Resource Augmentation", icon: FaUsers, description: "Scale your team effectively with our flexible resource augmentation model. Access skilled IT professionals (BAs, Testers, Developers, Designers) on demand or via managed milestone-based projects.", imageUrl: "/images/team-collaborative.png", // Reusing image from Resource Augmentation link: "/services/resource-augmentation", linkText: "Explore Augmentation", }, { title: "OBSE - Bank Statement Extractor", icon: FaShippingFast, description: "Automate bank statement processing with OBSE. Our intelligent OCR solution extracts data accurately and quickly, enhancing efficiency, reducing risk, and speeding up financial assessments.", imageUrl: "/images/obse.svg", // Reusing image from OBSE link: "/obse", linkText: "Learn About OBSE", }, ]; const ourApproachItems = [ { icon: FaProjectDiagram, title: "Strategic Alignment", description: "Understanding your goals to ensure solutions deliver value.", }, { icon: FaHandshake, title: "Client-Centric Collaboration", description: "Working as true partners, involving you throughout.", }, { icon: FaCogs, title: "Agile & Adaptive Delivery", description: "Flexible methodologies for faster, relevant results.", }, { icon: FaWrench, title: "Technical Excellence", description: "Building robust, scalable, and maintainable solutions.", }, ]; export default function ServicesPage() { return (
{/* 1. Hero Section */}

Tailored IT Services & Solutions

Owethu Managed Services empowers businesses through innovative technology solutions, strategic consulting, flexible resource augmentation, and specialized product offerings.

Explore Our Services
{/* 2. Core Service Areas Section */}

Our Expertise, Your Advantage

We offer a comprehensive suite of services designed to address your specific IT needs and drive business growth.

{serviceAreas.map((service) => (
{`${service.title}

{service.title}

{service.description}

{service.linkText}
))}
{/* 3. Our Approach Section */}

How We Deliver Excellence

Our methodology ensures collaboration, precision, and impactful results tailored to your project needs.

{ourApproachItems.map((item) => (

{item.title}

{item.description}

))}
{/* 4. Industry Expertise Snippet (Optional) */}

Serving Diverse Industries

We apply our technical expertise across various sectors, understanding the unique challenges and opportunities within each. Key areas include Financial Services, Automotive, Technology, and more.

Learn More About Our Industry Focus{" "}
{/* 5. Call to Action (CTA) Section */}

Let's Build Your Solution

Ready to discuss how OMS can help you achieve your technology goals? Contact us today for a consultation.

Get in Touch
); }