05-19-2025/ update site

This commit is contained in:
2025-05-19 16:01:33 +02:00
parent 0f3eaff970
commit 3f702a7592
5 changed files with 42 additions and 22 deletions

View File

@ -110,16 +110,16 @@ const keyFeatures: FeatureItem[] = [
},
{
icon: FaSearchDollar,
title: "Intelligent Income Detection",
title: "Intelligent Income & Salaried Detection",
description:
"Identifies salaried/non-salaried income, provides explanations, and filters out transfers.",
"Accurately detects both salaried and non-salaried income, explains findings, and intelligently filters out internal transfers for clearer financial insights. ",
},
{
icon: FaFingerprint,
title: "Enhanced Fraud Detection",
description:
"Detects document tampering, fraudulent insertions, and developing behavioral profiling.",
isComingSoon: true,
isComingSoon: false,
},
{
icon: FaSyncAlt,
@ -244,10 +244,11 @@ export default function ObsePage() {
{/* Consider adding OMS Logo here */}
{/* <Image src="/oms-logo-white.png" alt="OMS Logo" width={150} height={50} className="mx-auto mb-6" /> */}
<h1
className="text-3xl md:text-5xl lg:text-6xl font-bold mb-4 font-poppins drop-shadow-md"
style={{ color: COLORS.primary }} // Use gold color
className="text-3xl md:text-5xl lg:text-6xl font-bold mb-4 font-poppins drop-shadow-md leading-tight"
style={{ color: COLORS.primary }}
>
Revolutionize Your Lending and Credit Processes with OBSE
Revolutionize Your Lending
and Credit Processes with OBSE
</h1>
<p className="text-lg md:text-xl max-w-4xl mx-auto leading-relaxed text-gray-200 dark:text-gray-300 mb-8">
Automate data extraction, enhance accuracy, detect fraud, and
@ -691,10 +692,10 @@ export default function ObsePage() {
</div>
</section>
{/* 11. About OMS Section (Brief) */}
{/* 11. About OMS Section (Brief)
<section className="py-16 md:py-24 bg-white dark:bg-gray-900">
<div className="container mx-auto px-6 text-center">
{/* Optional: OMS Logo */}
{ Optional: OMS Logo }
<h2 className="text-3xl md:text-4xl font-bold font-poppins text-gray-900 dark:text-white mb-4">
Your Experienced Partner in Financial Technology
</h2>
@ -714,6 +715,7 @@ export default function ObsePage() {
</Link>
</div>
</section>
/}
{/* 12. Call to Action (CTA) Section */}
<section
@ -753,6 +755,7 @@ export default function ObsePage() {
</section>
{/* 13. Contact Information Section */}
{/*}
<section className="py-16 md:py-24 bg-gray-100 dark:bg-gray-800">
<div className="container mx-auto px-6">
<div className="text-center mb-12">
@ -767,7 +770,10 @@ export default function ObsePage() {
</p>
</div>
<div className="max-w-4xl mx-auto grid grid-cols-1 md:grid-cols-2 gap-8 items-center">
{/* Contact Details */}
{ -----Contact Details */}
{/* Optional: Add a contact form component here if available ---
<div className="space-y-6">
<div className="flex items-center space-x-4">
<FaPhone
@ -803,7 +809,9 @@ export default function ObsePage() {
</a>
</div>
</div>
{/* Optional: Link to main contact page */}
{--- Optional: Link to main contact page */}
{/* --- comment out if not needed}
<Link
href="/contact"
className="inline-flex items-center text-gold-600 dark:text-gold-400 hover:text-gold-700 dark:hover:text-gold-300 font-semibold transition-colors duration-300"
@ -812,9 +820,10 @@ export default function ObsePage() {
Go to Full Contact Page <FaArrowRight className="ml-2" />
</Link>
</div>
*/}
{/* Optional: Simple Contact Form (if ContactForm component is not used/available) */}
{/* <form className="space-y-4">
{/* Optional: Simple Contact Form (if ContactForm component is not used/available) */}
{/* <form className="space-y-4">
<div>
<label htmlFor="name" className="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">Name</label>
<input type="text" id="name" name="name" required className="w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:ring-gold-500 focus:border-gold-500 dark:bg-gray-700 dark:border-gray-600 dark:text-white" />
@ -832,7 +841,7 @@ export default function ObsePage() {
</button>
</form> */}
{/* OR Use the ContactForm Component */}
{/* OR Use the ContactForm Component
<div className="bg-white dark:bg-gray-700 p-6 rounded-lg shadow-md">
<h3 className="text-xl font-semibold font-poppins text-gray-900 dark:text-white mb-4">
Send a Quick Inquiry
@ -842,6 +851,9 @@ export default function ObsePage() {
</div>
</div>
</section>
*/}
{/* 14. Footer Section */}
</div>
);
}