From 3bc7452434e955c886195886077dba19c3f9fb33 Mon Sep 17 00:00:00 2001 From: libertyoms Date: Sun, 27 Apr 2025 17:04:09 +0200 Subject: [PATCH] Obse SEO Implemented --- app/(website)/obse/page.tsx | 49 +++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/app/(website)/obse/page.tsx b/app/(website)/obse/page.tsx index b0a4479..ac5a788 100644 --- a/app/(website)/obse/page.tsx +++ b/app/(website)/obse/page.tsx @@ -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;