35632-vm/product.php
2025-12-18 01:56:10 +00:00

121 lines
6.8 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Why FinMox - FinMox</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<style>
body { font-family: 'Inter', sans-serif; }
.tab-button {
padding: 0.5rem 1rem;
margin: 0 0.5rem;
border-bottom: 2px solid transparent;
font-weight: 500;
color: #6B7280; /* gray-500 */
}
.tab-button.active-tab {
color: #000;
border-bottom-color: #000;
}
</style>
</head>
<body class="text-gray-900">
<!-- HEADER -->
<header class="max-w-7xl mx-auto px-6 py-5 flex items-center">
<a href="index.php" class="flex items-center gap-2">
<img src="./assets/pasted-20251218-013818-4ebb11ba.png" alt="FinMox Logo" class="h-10 w-10">
<span class="font-bold text-2xl">FinMox</span>
</a>
<nav class="hidden md:flex gap-10 flex-grow justify-center pl-20">
<a href="index.php" class="text-gray-500 hover:text-black font-medium text-base">Home</a>
<a href="problem.php" class="text-gray-500 hover:text-black font-medium text-base">Problem</a>
<a href="product.php" class="text-black hover:text-black font-bold text-base">Why FinMox</a>
<a href="how_it_works.php" class="text-gray-500 hover:text-black font-medium text-base">How It Works</a>
<a href="roi.php" class="text-gray-500 hover:text-black font-medium text-base">ROI</a>
<a href="pricing.php" class="text-gray-500 hover:text-black font-medium text-base">Pricing</a>
</nav>
<div class="flex items-center gap-4">
<a href="login.php" class="text-gray-600 hover:text-black">Sign In</a>
<a href="apply.php" class="bg-black text-white px-5 py-2.5 rounded-lg">Apply for Access</a>
</div>
</header>
<!-- CONTENT -->
<main class="max-w-5xl mx-auto px-6 py-16">
<div class="text-center">
<h1 class="text-4xl md:text-5xl font-extrabold leading-tight">Why FinMox</h1>
<p class="mt-4 max-w-2xl mx-auto text-lg text-gray-600">FinMox is not another ATS. Its an HR Automation System that runs your hiring workflows for you.</p>
</div>
<section class="mt-16">
<div class="bg-white p-8 rounded-xl shadow-sm border border-gray-200">
<h2 class="text-2xl font-bold text-center">What FinMox Automates</h2>
<ul class="mt-8 grid grid-cols-1 md:grid-cols-2 gap-x-8 gap-y-4 text-gray-700 automates-list">
<li class="flex items-center"><span class="text-green-500 mr-3"></span>Resume parsing & ranking</li>
<li class="flex items-center"><span class="text-green-500 mr-3"></span>Candidate shortlisting</li>
<li class="flex items-center"><span class="text-green-500 mr-3"></span>Interview summaries & recommendations</li>
<li class="flex items-center"><span class="text-green-500 mr-3"></span>Interview question generation</li>
<li class="flex items-center"><span class="text-green-500 mr-3"></span>Offer letter drafting</li>
<li class="flex items-center"><span class="text-green-500 mr-3"></span>Onboarding preparation</li>
</ul>
<p class="mt-6 text-center font-semibold">All in one workflow.</p>
</div>
</section>
<section class="mt-20 text-center">
<h2 class="text-3xl font-bold">HumanintheLoop Control</h2>
<p class="mt-4 max-w-2xl mx-auto text-lg text-gray-600">You review, approve, and decide FinMox handles the busy work. No automated hiring decisions.</p>
<div id="human-in-loop-tabs" class="mt-10 max-w-4xl mx-auto">
<!-- Tab Buttons -->
<div class="flex justify-center">
<button data-tab="automation" class="tab-button active-tab">Automation</button>
<button data-tab="ai-outputs" class="tab-button">AI Outputs</button>
<button data-tab="security" class="tab-button">Security</button>
</div> <!-- Tab Content -->
<div class="mt-8 text-left">
<div id="automation" class="tab-content">
<div class="grid md:grid-cols-2 gap-12 items-center">
<div class="prose">
<h3>FinMox automates the repeatable workflow steps so your team stays focused on decision-making.</h3>
</div>
<div>
<img src="assets/pasted-20251217-224259-cde468eb.png" alt="Automation Illustration" class="rounded-lg shadow-lg">
</div>
</div>
</div>
<div id="ai-outputs" class="tab-content hidden">
<div class="grid md:grid-cols-2 gap-12 items-center">
<div class="prose">
<h3>FinMox generates interview questions, summaries, and recommendations all reviewable and editable.</h3>
</div>
<div>
<img src="assets/pasted-20251217-225220-1f0cef14.png" alt="AI Outputs Illustration" class="rounded-lg shadow-lg">
</div>
</div>
</div>
<div id="security" class="tab-content hidden">
<div class="grid md:grid-cols-2 gap-12 items-center">
<div class="prose">
<h3>Human reviewed outputs, audit-friendly documentation, and compliance-aware design.</h3>
</div>
<div>
<img src="assets/pasted-20251217-225740-3c6eca20.png" alt="Security Illustration" class="rounded-lg shadow-lg">
</div>
</div>
</div>
</div>
</div>
<a href="how_it_works.php" class="mt-16 inline-block bg-blue-500 text-white text-sm px-8 py-3 rounded-lg font-semibold hover:bg-blue-700 transition">See How It Works </a>
</section>
</main>
<?php include '_footer.php'; ?>
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>