new changes

This commit is contained in:
2025-05-26 22:30:04 +02:00
parent 5baa62e86d
commit 735f98f564
9 changed files with 28 additions and 17 deletions

View File

@ -16,7 +16,7 @@ const HeroSection: React.FC<HeroSectionProps> = ({
title,
subtitle,
buttonText,
buttonHref,
//buttonHref,
imageUrl = "/hero-bg-2.jpg", // Default background image
}) => {
return (
@ -52,7 +52,7 @@ const HeroSection: React.FC<HeroSectionProps> = ({
{subtitle}
</p>
<Button
href={buttonHref}
href="/obse"
variant="primary" // Use primary variant defined in Button component
size="lg"
className="animate-fade-in-up animation-delay-600"

View File

@ -242,10 +242,10 @@ export default function ObsePage() {
{/* <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 leading-tight"
style={{ color: COLORS.primary }}
>
Revolutionize Your Lending and <br />Credit Processes with OBSE
Revolutionize Your Lending and <br />
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
@ -254,7 +254,7 @@ export default function ObsePage() {
</p>
<div className="flex flex-col sm:flex-row justify-center items-center gap-4">
<Link
href="#how-it-works" // Link to the "How it Works" section
href="https://youtu.be/Sd3TnvoLtDA?si=UOeXScbosM5LZxbg" // Link to the "How it Works" section
className="inline-flex items-center justify-center bg-gold-500 text-gray-900 font-bold py-3 px-8 rounded-md hover:bg-gold-600 transition-colors duration-300"
style={{ backgroundColor: COLORS.primary }}
>

View File

@ -62,7 +62,7 @@ export default async function HomePage() {
description="Our advanced Optimized Bank Statement Extractor automates data aggregation, reduces errors, and provides deep financial insights."
features={defaultObseFeatures}
buttonText="Learn More & Demo"
buttonHref="/products/obse" // Link to the OBSE product page
buttonHref="/obse" // Link to the OBSE product page
imageUrl="/images/obse.svg" // **IMPORTANT: Create or find a relevant image**
imageAlt="OBSE Product Interface Mockup"
/>

View File

@ -329,7 +329,7 @@ export default function ProductDevelopmentPage() {
How We Deliver
</Link>
<Link
href="#contact"
href="/contact"
className="inline-flex items-center text-gold-400 hover:text-gold-300 transition-colors duration-300"
style={{ color: COLORS.primary }}
>

View File

@ -50,7 +50,7 @@ const TechTalkPage = async () => {
</p>
</div>
{/* Blog Post Grid */}
{posts.length > 0 ? (
{false && posts.length > 0 ? (
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8 md:gap-10">
{posts.map((post: Post) => (
<BlogPostCard