Files
oms-website-nextjs/utils/jsonLdSchema.ts
2025-04-20 18:19:43 +02:00

80 lines
3.4 KiB
TypeScript

function JsonLdSchema() {
const schema = {
'@context': 'https://schema.org',
'@type': 'Organization', // Or 'LocalBusiness' if more appropriate
name: 'Owethu Managed Services (OMS)',
alternateName: 'OMS',
url: 'https://www.oms.africa', // Replace with your actual domain
logo: 'https://www.oms.africa/oms-logo.svg', // Replace with absolute URL to your logo
contactPoint: {
'@type': 'ContactPoint',
telephone: '+27-12-051-3282', // Use international format
contactType: 'Customer Service', // Or 'Sales', 'Technical Support'
areaServed: 'ZA', // ISO 3166-1 alpha-2 code for South Africa
availableLanguage: ['en'],
},
address: { // Add address if applicable, especially for LocalBusiness
'@type': 'PostalAddress',
streetAddress': 'Unit 10 B Centuria Park, 265 Von Willich Avenue',
addressLocality': 'Centurion',
addressRegion': 'GP', // Gauteng province code
postalCode': '0159',
addressCountry': 'ZA'
},
sameAs: [ // Links to social media profiles
'https://www.linkedin.com/your-linkedin-profile', // Replace with actual URLs
'https://www.instagram.com/your-instagram-profile',
// Add other relevant profiles (Twitter, Facebook, etc.)
],
description: metadata.description, // Reuse description from metadata
// Define key services offered
makesOffer: [
{
"@type": "Offer",
"itemOffered": {
"@type": "Service",
"name": "IT Resource Augmentation",
"description": "Providing top-tier IT talent and skilled professionals for short-term or long-term project needs."
// "url": "https://www.oms.africa/services/resource-augmentation" // Add specific service URL if available
}
},
{
"@type": "Offer",
"itemOffered": {
"@type": "Service",
"name": "IT Project Management",
"description": "Expert project management ensuring on-time, within-budget delivery with superior results."
// "url": "https://www.oms.africa/services/project-management"
}
},
{
"@type": "Offer",
"itemOffered": {
"@type": "Service",
"name": "Custom Software & Product Development",
"description": "Creating innovative, scalable digital products and custom software solutions."
// "url": "https://www.oms.africa/services/product-development"
}
},
{
"@type": "Offer",
"itemOffered": {
// Use SoftwareApplication or Product depending on how you market OBSE
"@type": "SoftwareApplication",
"name": "OBSE (Optical Bank Statement Extractor)",
"description": "Advanced tool for automating bank statement OCR and financial data aggregation.",
// "url": "https://www.oms.africa/products/obse"
"applicationCategory": "FinanceApplication",
"operatingSystem": "WebPlatform" // Or specify OS if applicable
}
}
]
};
return (
<script
type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify(schema) }}
/>
);
}