35632-vm/how_it_works.php
2025-12-18 01:31:25 +00:00

84 lines
4.6 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">
<div class="font-bold text-2xl">FinMox</div>
<nav class="hidden md:flex gap-10 flex-grow justify-center">
<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-gray-500 hover:text-black font-medium text-base">Why FinMox</a>
<a href="how_it_works.php" class="text-black hover:text-black font-bold 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="demo.php" class="bg-black text-white px-5 py-2.5 rounded-lg">Book a Demo</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-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>