mirror of
https://github.com/OwethuManagedServices/oms-website-nextjs.git
synced 2025-12-17 19:08:09 +00:00
Obse SEO Implemented
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
import Image from "next/image";
|
||||
import Link from "next/link";
|
||||
import { Metadata } from "next"; // Added import
|
||||
import {
|
||||
FaArrowRight,
|
||||
FaCheckCircle,
|
||||
@ -32,6 +33,54 @@ import {
|
||||
import { COLORS } from "@/constants"; // Assuming COLORS constant is available
|
||||
import ContactForm from "@/components/ContactForm"; // Assuming ContactForm is available
|
||||
|
||||
// SEO Metadata
|
||||
export const metadata: Metadata = {
|
||||
title: "Automated Bank Statement Extraction South Africa | OBSE by OMS",
|
||||
description:
|
||||
"Revolutionize lending with OBSE: Automated bank statement data extraction, OCR, fraud detection, and analysis for South African financial institutions. Improve accuracy, speed, and decision-making.",
|
||||
keywords: [
|
||||
"Optical Bank Statement Extractor",
|
||||
"OBSE",
|
||||
"bank statement extraction",
|
||||
"OCR bank statements",
|
||||
"automated financial data",
|
||||
"South Africa",
|
||||
"lending automation",
|
||||
"credit risk assessment",
|
||||
"income verification",
|
||||
"affordability calculation",
|
||||
"fraud detection",
|
||||
"financial technology",
|
||||
"fintech SA",
|
||||
"OMS",
|
||||
"Owethu Management Services",
|
||||
],
|
||||
// Optional: Add Open Graph and Twitter Card metadata for social sharing
|
||||
openGraph: {
|
||||
title: "Automated Bank Statement Extraction South Africa | OBSE by OMS",
|
||||
description:
|
||||
"Streamline your financial processes with OBSE's intelligent bank statement analysis.",
|
||||
url: "https://www.oms.africa/obse", // Replace with your actual URL
|
||||
images: [
|
||||
{
|
||||
url: "/images/obse-og-image.png", // Replace with an appropriate OG image URL
|
||||
width: 1200,
|
||||
height: 630,
|
||||
alt: "OBSE Automated Bank Statement Extraction",
|
||||
},
|
||||
],
|
||||
locale: "en_ZA",
|
||||
type: "website",
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Automated Bank Statement Extraction South Africa | OBSE by OMS",
|
||||
description:
|
||||
"Fast, accurate bank statement processing for SA lenders with OBSE.",
|
||||
// images: ['/images/obse-twitter-image.png'], // Replace with Twitter-specific image if needed
|
||||
},
|
||||
};
|
||||
|
||||
// Define structure for features, benefits, etc. if needed for mapping
|
||||
interface FeatureItem {
|
||||
icon: React.ElementType;
|
||||
|
||||
Reference in New Issue
Block a user