94 lines
4.9 KiB
PHP
94 lines
4.9 KiB
PHP
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<title>Services - 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-gray-50 text-gray-900">
|
||
|
||
<!-- NAV -->
|
||
<header class="max-w-7xl mx-auto px-6 py-5 flex items-center justify-between">
|
||
<div class="font-bold text-xl">FinMox</div>
|
||
<nav class="hidden md:flex gap-8 text-sm">
|
||
<a href="index.php">Home</a>
|
||
<a href="product.php">Product</a>
|
||
<a href="services.php">Services</a>
|
||
<a href="features.php">Features</a>
|
||
<a href="pricing.php">Pricing</a>
|
||
</nav>
|
||
<div class="flex gap-3">
|
||
<a href="login.php" class="text-sm flex items-center">Sign In</a>
|
||
<a href="register.php" class="bg-black text-white text-sm px-4 py-2 rounded-lg">Sign Up</a>
|
||
</div>
|
||
</header>
|
||
|
||
<!-- CONTENT -->
|
||
<main class="max-w-7xl mx-auto px-6 py-16">
|
||
<div class="text-center">
|
||
<h1 class="text-4xl md:text-5xl font-extrabold leading-tight">What You Get with FinMox</h1>
|
||
<p class="mt-4 max-w-3xl mx-auto text-lg text-gray-600">Our services are designed to eliminate the repetitive, time-consuming tasks that slow down your hiring process, so you can focus on what matters: making great hires.</p>
|
||
</div>
|
||
|
||
<section class="mt-20 grid md:grid-cols-2 gap-12 items-center">
|
||
<div class="space-y-8">
|
||
<div>
|
||
<h3 class="text-2xl font-bold">🔹 AI-Powered Candidate Ranking</h3>
|
||
<p class="mt-2 text-gray-600">Every candidate is automatically scored and ranked based on skills, experience, and custom role-fit criteria, bringing the best matches to the top.</p>
|
||
</div>
|
||
<div>
|
||
<h3 class="text-2xl font-bold">🔹 Interview Automation</h3>
|
||
<p class="mt-2 text-gray-600">From generating role-specific interview questions to providing concise summaries and recommendations, we automate the entire interview cycle.</p>
|
||
</div>
|
||
<div>
|
||
<h3 class="text-2xl font-bold">🔹 Offer & Onboarding Automation</h3>
|
||
<p class="mt-2 text-gray-600">Generate ready-to-send offer letters and create structured first-week onboarding plans to ensure a smooth transition for new hires.</p>
|
||
</div>
|
||
<div>
|
||
<h3 class="text-2xl font-bold">🔹 Human-in-the-Loop Control</h3>
|
||
<p class="mt-2 text-gray-600">You remain in full control. FinMox handles the busy work, while you review, approve, and make the final decisions.</p>
|
||
</div>
|
||
</div>
|
||
<div class="hidden md:block">
|
||
<img src="/assets/pasted-20251217-044056-9b8276fd.webp" alt="Abstract illustration of automated workflow" class="rounded-xl shadow-lg">
|
||
</div>
|
||
</section>
|
||
|
||
<section class="mt-24 bg-white p-12 rounded-2xl shadow-md">
|
||
<div class="text-center">
|
||
<h2 class="text-3xl font-bold">Who Is FinMox For?</h2>
|
||
<p class="mt-3 max-w-2xl mx-auto text-gray-600">FinMox HR is the perfect solution for lean and growing teams that want to hire faster and smarter.</p>
|
||
</div>
|
||
<div class="mt-10 grid md:grid-cols-2 lg:grid-cols-3 gap-8 text-center">
|
||
<div>
|
||
<h4 class="text-xl font-semibold">Hire 1–10 Roles/Month</h4>
|
||
<p class="mt-1 text-gray-600">Ideal for companies with a steady but manageable hiring volume.</p>
|
||
</div>
|
||
<div>
|
||
<h4 class="text-xl font-semibold">Review 50–300 Candidates</h4>
|
||
<p class="mt-1 text-gray-600">Perfect for roles where you receive a significant number of applications.</p>
|
||
</div>
|
||
<div>
|
||
<h4 class="text-xl font-semibold">1–5 People in Hiring</h4>
|
||
<p class="mt-1 text-gray-600">Designed for small hiring teams who need to maximize their efficiency.</p>
|
||
</div>
|
||
<div class="lg:col-span-3 md:col-span-2 mt-4">
|
||
<h4 class="text-xl font-semibold">Want Faster Decisions</h4>
|
||
<p class="mt-1 text-gray-600">Built for those who want to accelerate the decision-making process without sacrificing quality.</p>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
</main>
|
||
|
||
<!-- FOOTER -->
|
||
<footer class="max-w-7xl mx-auto px-6 py-12 text-center text-gray-500 text-sm">
|
||
© 2025 FinMox. All rights reserved.
|
||
</footer>
|
||
|
||
</body>
|
||
</html> |