84 lines
4.4 KiB
PHP
84 lines
4.4 KiB
PHP
<!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-blue-700 font-bold">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 Hiring‑Ready 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>AI‑Powered 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>Human‑in‑the‑Loop Control</span></li>
|
||
</ul>
|
||
</div>
|
||
<div>
|
||
<h3 class="font-bold text-2xl mb-6">Who It’s For</h3>
|
||
<ul class="space-y-4">
|
||
<li class="flex items-start"><span class="text-2xl mr-3">✔️</span><span>Hire 1–10 roles/month</span></li>
|
||
<li class="flex items-start"><span class="text-2xl mr-3">✔️</span><span>50–300 candidates/role</span></li>
|
||
<li class="flex items-start"><span class="text-2xl mr-3">✔️</span><span>1–5 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-500 text-white font-semibold px-8 py-3 rounded-lg hover:bg-blue-700 transition">See ROI →</a>
|
||
|
||
</main>
|
||
|
||
<?php include '_footer.php'; ?>
|
||
|
||
</body>
|
||
</html>
|