35632-vm/how_it_works.php
2025-12-17 23:50:53 +00:00

99 lines
5.1 KiB
PHP
Raw 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>How It Works - FinMox</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<style>
body { font-family: 'Inter', sans-serif; }
</style>
</head>
<body class="bg-white text-gray-900">
<!-- HEADER -->
<header class="max-w-7xl mx-auto px-6 py-5 flex items-center justify-between text-sm">
<div class="font-bold text-xl">FinMox</div>
<nav class="hidden md:flex gap-8">
<a href="index.php" class="text-gray-600 hover:text-black">Home</a>
<a href="problem.php" class="text-gray-600 hover:text-black">Problem</a>
<a href="product.php" class="text-gray-600 hover:text-black">Why FinMox</a>
<a href="how_it_works.php" class="text-black font-semibold">How It Works</a>
<a href="roi.php" class="text-gray-600 hover:text-black">ROI</a>
<a href="pricing.php" class="text-gray-600 hover:text-black">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-4xl mx-auto px-6 py-16 text-center">
<h1 class="text-5xl font-extrabold mb-4">How It Works</h1>
<p class="text-xl text-gray-600 mb-12">Three steps from job creation to hiring-ready outputs.</p>
<div class="grid md:grid-cols-3 gap-8 text-left mb-20">
<div class="bg-gray-50 p-8 rounded-lg">
<div class="text-3xl mb-4">1️⃣</div>
<h3 class="font-bold text-lg mb-2">Create a Job</h3>
<p class="text-gray-600">Input your role, requirements, and hiring criteria.</p>
</div>
<div class="bg-gray-50 p-8 rounded-lg">
<div class="text-3xl mb-4">2️⃣</div>
<h3 class="font-bold text-lg mb-2">Upload Candidates</h3>
<p class="text-gray-600">Upload resumes individually or in bulk.</p>
</div>
<div class="bg-gray-50 p-8 rounded-lg">
<div class="text-3xl mb-4">3️⃣</div>
<h3 class="font-bold text-lg mb-2">Get HiringReady Outputs</h3>
<p class="text-gray-600">Rankings, interview materials, and offer documents generated automatically.</p>
</div>
</div>
<div class="grid md:grid-cols-2 gap-12 text-left mb-20">
<div>
<h3 class="font-bold text-2xl mb-6">What You Get</h3>
<ul class="space-y-4">
<li class="flex items-start"><span class="text-2xl mr-3">🔹</span><span>AIPowered Candidate Ranking</span></li>
<li class="flex items-start"><span class="text-2xl mr-3">🔹</span><span>Interview Automation</span></li>
<li class="flex items-start"><span class="text-2xl mr-3">🔹</span><span>Offer & Onboarding Automation</span></li>
<li class="flex items-start"><span class="text-2xl mr-3">🔹</span><span>HumanintheLoop Control</span></li>
</ul>
</div>
<div>
<h3 class="font-bold text-2xl mb-6">Who Its For</h3>
<ul class="space-y-4">
<li class="flex items-start"><span class="text-2xl mr-3">✔️</span><span>Hire 110 roles/month</span></li>
<li class="flex items-start"><span class="text-2xl mr-3">✔️</span><span>50300 candidates/role</span></li>
<li class="flex items-start"><span class="text-2xl mr-3">✔️</span><span>15 hiring stakeholders</span></li>
<li class="flex items-start"><span class="text-2xl mr-3">✔️</span><span>Faster decisions without headcount</span></li>
</ul>
<p class="text-gray-500 mt-6 text-sm">Not designed for enterprise-scale recruiting (yet).</p>
</div>
</div>
<a href="roi.php" class="inline-block bg-blue-600 text-white font-semibold px-8 py-3 rounded-lg hover:bg-blue-700 transition">See ROI </a>
</main>
<!-- FOOTER -->
<footer class="max-w-7xl mx-auto px-6 py-12 text-gray-500 text-sm text-center border-t">
<div class="flex justify-center gap-6 mb-6">
<a href="apply.php" class="text-gray-600 hover:text-black">Apply</a>
<a href="login.php" class="text-gray-600 hover:text-black">Sign In</a>
</div>
<p class="mb-4">FinMox © 2025</p>
<div class="flex justify-center gap-6 mb-4">
<a href="#" class="hover:text-black">Security & Privacy</a>
</div>
<div class="space-y-2">
<p>Humanreviewed outputs</p>
<p>No automated hiring decisions</p>
<p>Built for intentional hiring</p>
</div>
</footer>
</body>
</html>