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

101 lines
5.4 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>Product - 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">The FinMox Difference</h1>
<p class="mt-4 max-w-3xl mx-auto text-lg text-gray-600">FinMox is not another ATS. Its an HR Automation System that runs your hiring workflows for you, turning manual chores into automated outputs.</p>
</div>
<section class="mt-20">
<h2 class="text-3xl font-bold text-center">What FinMox Automates</h2>
<div class="mt-10 grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-white p-8 rounded-xl shadow-sm">
<h3 class="text-xl font-semibold">Resume Parsing & Ranking</h3>
<p class="mt-2 text-gray-600">Automatically extract and score candidate details from resumes based on your criteria.</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-sm">
<h3 class="text-xl font-semibold">Candidate Shortlisting</h3>
<p class="mt-2 text-gray-600">Get a ranked list of top candidates without manually reviewing every application.</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-sm">
<h3 class="text-xl font-semibold">Interview Question Generation</h3>
<p class="mt-2 text-gray-600">Create role-specific, insightful questions to drive effective interviews.</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-sm">
<h3 class="text-xl font-semibold">Interview Summaries</h3>
<p class="mt-2 text-gray-600">Receive AI-generated summaries and recommendations after each interview.</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-sm">
<h3 class="text-xl font-semibold">Offer Letter Drafting</h3>
<p class="mt-2 text-gray-600">Generate professional, ready-to-send offer letters in minutes.</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-sm">
<h3 class="text-xl font-semibold">Onboarding Preparation</h3>
<p class="mt-2 text-gray-600">Automate the creation of first-week plans and onboarding materials.</p>
</div>
</div>
</section>
<section class="mt-24 text-center">
<h2 class="text-3xl font-bold">How It Works in 3 Simple Steps</h2>
<div class="mt-12 flex flex-col md:flex-row justify-center items-center gap-12 md:gap-8">
<!-- Step 1 -->
<div class="flex-1 max-w-sm">
<div class="bg-black text-white w-12 h-12 rounded-full flex items-center justify-center text-xl font-bold mx-auto">1</div>
<h3 class="mt-5 text-xl font-semibold">Create a Job</h3>
<p class="mt-2 text-gray-600">Input your role, requirements, and hiring criteria to define what you're looking for.</p>
</div>
<!-- Step 2 -->
<div class="flex-1 max-w-sm">
<div class="bg-black text-white w-12 h-12 rounded-full flex items-center justify-center text-xl font-bold mx-auto">2</div>
<h3 class="mt-5 text-xl font-semibold">Upload Candidates</h3>
<p class="mt-2 text-gray-600">Upload resumes individually or in bulk to feed candidates into the system.</p>
</div>
<!-- Step 3 -->
<div class="flex-1 max-w-sm">
<div class="bg-black text-white w-12 h-12 rounded-full flex items-center justify-center text-xl font-bold mx-auto">3</div>
<h3 class="mt-5 text-xl font-semibold">Get Hiring-Ready Outputs</h3>
<p class="mt-2 text-gray-600">FinMox delivers ranked candidates, interview materials, and offer documents automatically.</p>
</div>
</div>
</section>
</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>