35632-vm/features.php
2025-12-17 05:13:24 +00:00

92 lines
5.1 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Features - 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">Core Features</h1>
<p class="mt-4 max-w-3xl mx-auto text-lg text-gray-600">Explore the powerful, AI-driven features that make FinMox the ultimate HR automation system for growing teams.</p>
</div>
<div class="mt-20 space-y-16">
<!-- Feature 1: AI-Powered Candidate Ranking -->
<section class="flex flex-col md:flex-row items-center gap-12">
<div class="md:w-1/2">
<h2 class="text-3xl font-bold">AI-Powered Candidate Ranking</h2>
<p class="mt-4 text-gray-600">Stop wasting hours on manual resume reviews. Our AI engine instantly parses, analyzes, and scores every candidate based on your unique job requirements. It identifies top talent by evaluating skills, experience, and overall fit, so your team can focus on the most promising applicants.</p>
</div>
<div class="md:w-1/2">
<img src="/assets/pasted-20251217-044254-e0e9d497.webp" alt="Illustration of AI ranking candidates" class="rounded-xl shadow-lg w-full">
</div>
</section>
<!-- Feature 2: Interview Automation -->
<section class="flex flex-col md:flex-row-reverse items-center gap-12">
<div class="md:w-1/2">
<h2 class="text-3xl font-bold">End-to-End Interview Automation</h2>
<p class="mt-4 text-gray-600">Streamline your entire interview process. FinMox generates role-specific interview questions, provides AI-powered summaries of interview recordings, and delivers data-driven recommendations. This ensures a consistent and effective evaluation process for every candidate.</p>
</div>
<div class="md:w-1/2">
<img src="/assets/pasted-20251217-045121-823e6258.png" alt="Illustration of interview automation" class="rounded-xl shadow-lg w-full">
</div>
</section>
<!-- Feature 3: Offer & Onboarding Automation -->
<section class="flex flex-col md:flex-row items-center gap-12">
<div class="md:w-1/2">
<h2 class="text-3xl font-bold">Offer & Onboarding Automation</h2>
<p class="mt-4 text-gray-600">Move faster when you find the right person. Draft professional offer letters in minutes and automatically generate comprehensive first-week onboarding plans. FinMox helps you create a seamless transition from candidate to employee, improving the new-hire experience.</p>
</div>
<div class="md:w-1/2">
<img src="/assets/pasted-20251217-045457-feb98286.png" alt="Illustration of offer and onboarding automation" class="rounded-xl shadow-lg w-full">
</div>
</section>
<!-- Feature 4: Human-in-the-Loop Control -->
<section class="flex flex-col md:flex-row-reverse items-center gap-12">
<div class="md:w-1/2">
<h2 class="text-3xl font-bold">Human-in-the-Loop Control</h2>
<p class="mt-4 text-gray-600">Automation doesn't mean losing control. FinMox is designed to be your co-pilot. You review the AI's recommendations, approve shortlists, and make the final hiring decisions. We handle the repetitive work, giving you more time to focus on strategic tasks.</p>
</div>
<div class="md:w-1/2">
<img src="/assets/pasted-20251217-043322-a3b56103.png" alt="Illustration of human-in-the-loop control" class="rounded-xl shadow-lg w-full">
</div>
</section>
</div>
</main>
<!-- FOOTER -->
<footer class="max-w-7xl mx-auto px-6 py-12 text-center text-gray-500 text-sm">
&copy; 2025 FinMox. All rights reserved.
</footer>
</body>
</html>