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

78 lines
3.9 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>The Problem - 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; }
.bullet-point { display: flex; align-items: start; }
.bullet-point::before { content: ""; margin-right: 0.75rem; font-size: 1.5em; line-height: 1; }
</style>
</head>
<body class="bg-white 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-black hover:text-black font-bold 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-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>
<!-- MAIN CONTENT -->
<main class="max-w-4xl mx-auto px-6 py-20">
<div class="text-center">
<h1 class="text-5xl font-extrabold leading-tight">Hiring is still broken.</h1>
<p class="mt-4 text-xl text-gray-700">HR teams waste dozens of hours per role on manual tasks.</p>
</div>
<div class="mt-16 grid md:grid-cols-2 gap-16">
<div>
<h2 class="text-2xl font-bold">Where time gets burned</h2>
<ul class="mt-6 space-y-4 text-lg text-gray-600">
<li class="bullet-point">Manually reviewing resumes</li>
<li class="bullet-point">Copy-pasting notes</li>
<li class="bullet-point">Coordinating interviews</li>
<li class="bullet-point">Rewriting job descriptions</li>
<li class="bullet-point">Drafting offer letters</li>
</ul>
</div>
<div>
<h2 class="text-2xl font-bold">What ATS doesnt solve</h2>
<p class="mt-6 text-lg text-gray-600">Most ATS platforms store data. They dont run the workflow.</p>
<p class="mt-4 text-lg text-gray-800 font-semibold">Your team still does the work.</p>
</div>
</div>
<div class="mt-24 text-center">
<h2 class="text-4xl font-bold text-black">FinMox does the work.</h2>
<div class="mt-8">
<a href="product.php" class="bg-blue-500 text-white px-8 py-4 rounded-xl font-semibold text-lg inline-flex items-center">
See the FinMox Difference
<svg class="w-5 h-5 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3"></path></svg>
</a>
</div>
</div>
</main>
<?php include '_footer.php'; ?>
</body>
</html>