import React, { useState } from 'react';
export default function FinanceIndustry() {
const subindustries = [
{
title: 'Fintech Platforms',
content:
'We build systems like digital wallets, loan tools, KYC checks, and dashboards that are stable and secure.',
image: '/images/finance/fintech.jpg',
},
{
title: 'Traditional Banking Systems',
content:
'We help banks upgrade old systems, improve interfaces, and stay within regulatory rules.',
image: '/images/finance/banking.jpg',
},
{
title: 'Insurance Tech',
content:
'We work on tools that handle policies, claims, and risk checks using data-backed features.',
image: '/images/finance/insurance.jpg',
},
{
title: 'Real Estate & PropTech',
content:
'We create software for rent management, property deals, and escrow flows that make real estate work easier.',
image: '/images/finance/proptech.jpg',
},
{
title: 'Blockchain & Web3 Infrastructure',
content:
'We’ve set up smart contract tools, wallets, and crypto systems used by exchanges, communities, and payment apps.',
image: '/images/finance/blockchain.jpg',
},
];
const [openIndex, setOpenIndex] = useState(null);
const toggleIndex = (idx) => setOpenIndex(openIndex === idx ? null : idx);
return (
{/* Hero Section */}
Finance
Tools That Support Financial Work
We work with banks, fintechs, and other finance teams to build software that runs smoothly and meets real needs.
Book a Free Strategy Call
{/* Subindustry Section */}
Where We Work
Software for Real Financial Tasks
We’ve helped banks, payment startups, and asset teams with tech that solves day-to-day problems.
{subindustries.map((item, idx) => (
{openIndex === idx && (
{item.content}
)}
))}
{/* CTA Banner */}
Need a Finance Tool Built?
Whether you’re planning a wallet, a lending app, or a risk dashboard—let’s help you set things up the right way.
Book a Free Strategy Call
{/* Contact Section */}
);
}