34768-vm/solution.php
Flatlogic Bot 11a44f8841 0.1
2025-10-10 06:57:45 +00:00

79 lines
4.6 KiB
PHP

<?php session_start(); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our Solution - Vision AI</title>
<meta name="description" content="Learn about the Vision AI RegTech solution for the financial services industry.">
<meta name="keywords" content="regtech, regulatory technology, financial services, compliance, risk management">
<meta property="og:title" content="Our Solution - Vision AI">
<meta property="og:description" content="Learn about the Vision AI RegTech solution for the financial services industry.">
<meta property="og:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? ''); ?>">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? ''); ?>">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Georgia&family=Inter:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light sticky-top">
<div class="container">
<a class="navbar-brand" href="/">Vision AI</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="/">Home</a></li>
<li class="nav-item"><a class="nav-link" href="/#about">About</a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownWhoWeServe" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Who We Serve
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdownWhoWeServe">
<li><a class="dropdown-item" href="/#who-we-serve">Banks</a></li>
<li><a class="dropdown-item" href="/#who-we-serve">Financial services</a></li>
<li><a class="dropdown-item" href="/#who-we-serve">Fintech</a></li>
<li><a class="dropdown-item" href="/#who-we-serve">Insurance</a></li>
<li><a class="dropdown-item" href="/#who-we-serve">Energy</a></li>
<li><a class="dropdown-item" href="/#who-we-serve">Retail</a></li>
</ul>
</li>
<li class="nav-item"><a class="nav-link" href="/solution.php">Solution</a></li>
<li class="nav-item"><a class="nav-link" href="/#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- Solution Section -->
<section id="solution" class="section bg-light-lilac">
<div class="container">
<h2 class="text-center mb-5">Our Solution</h2>
<div class="row justify-content-center">
<div class="col-lg-8">
<p class="lead">Regulatory Technology commonly referred to as “RegTech” is a subset of FinTech which uses information technology to enhance regulatory monitoring, reporting, and other compliance processes for the financial services industry. RegTech solution providers often concentrate on digitizing manual compliance processes, but RegTech has much more to offer financial institutions by enhancing the financial institutions overall agility and competitive edge.</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-dark text-white text-center py-4">
<div class="container">
<p>&copy; <?php echo date('Y'); ?> Vision AI. All Rights Reserved.</p>
<p><a href="/privacy.php" class="text-white">Privacy Policy</a></p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>