34878-vm/index.php
Flatlogic Bot 8d771ec57c V1
2025-10-11 14:09:06 +00:00

95 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>GPTPayroll & HR SaaS</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
.zambian-gradient {
background: linear-gradient(45deg, #10B981, #F59E0B, #EF4444);
}
</style>
</head>
<body class="bg-gray-100">
<!-- Navigation -->
<nav class="bg-white shadow-md">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center h-16">
<div class="flex-shrink-0">
<a href="#" class="text-2xl font-bold zambian-gradient bg-clip-text text-transparent">GPTPayroll</a>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-baseline space-x-4">
<a href="#" class="text-gray-700 hover:text-gray-900 px-3 py-2 rounded-md text-sm font-medium">Home</a>
<a href="#features" class="text-gray-700 hover:text-gray-900 px-3 py-2 rounded-md text-sm font-medium">Features</a>
<a href="#pricing" class="text-gray-700 hover:text-gray-900 px-3 py-2 rounded-md text-sm font-medium">Pricing</a>
<a href="/login.php" class="text-gray-700 hover:text-gray-900 px-3 py-2 rounded-md text-sm font-medium">Login</a>
<a href="/register.php" class="bg-green-500 text-white px-3 py-2 rounded-md text-sm font-medium hover:bg-green-600">Register</a>
</div>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<header class="zambian-gradient text-white text-center py-20">
<h1 class="text-5xl font-bold mb-4">Modern Payroll & HR for Zambia</h1>
<p class="text-xl mb-8">Automate your payroll, taxes, and HR with a system built for Zambia.</p>
<a href="/register.php" class="bg-white text-green-500 font-bold py-3 px-6 rounded-full hover:bg-gray-200">Get Started for Free</a>
</header>
<!-- Features Section -->
<main id="features" class="py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-800">All-in-One HR Platform</h2>
<p class="text-gray-600">Everything you need to manage your workforce.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white p-8 rounded-lg shadow-md">
<h3 class="text-xl font-bold mb-2">Payroll Management</h3>
<p class="text-gray-600">Automated calculations for NAPSA, NHIMA, and PAYE. Customizable payslips.</p>
</div>
<div class="bg-white p-8 rounded-lg shadow-md">
<h3 class="text-xl font-bold mb-2">Employee Self-Service</h3>
<p class="text-gray-600">Employees can view payslips, apply for leave, and update their information.</p>
</div>
<div class="bg-white p-8 rounded-lg shadow-md">
<h3 class="text-xl font-bold mb-2">Compliance & Reporting</h3>
<p class="text-gray-600">Generate tax reports and stay compliant with Zambian regulations.</p>
</div>
</div>
</div>
</main>
<!-- Pricing Section -->
<section id="pricing" class="bg-gray-50 py-20">
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Simple, Transparent Pricing</h2>
<p class="text-gray-600 mb-8">Choose the plan that's right for your business.</p>
<div class="bg-white p-8 rounded-lg shadow-md">
<h3 class="text-2xl font-bold mb-4">Business Plan</h3>
<p class="text-5xl font-bold mb-4">K 100 <span class="text-lg font-normal">/ employee / month</span></p>
<ul class="text-left space-y-2 text-gray-600">
<li><span class="text-green-500 mr-2">&#10003;</span>Full Payroll & HR Suite</li>
<li><span class="text-green-500 mr-2">&#10003;</span>Employee Self-Service</li>
<li><span class="text-green-500 mr-2">&#10003;</span>Standard Integrations</li>
<li><span class="text-green-500 mr-2">&#10003;</span>Email & Phone Support</li>
</ul>
<a href="/register.php" class="mt-8 inline-block bg-green-500 text-white font-bold py-3 px-6 rounded-full hover:bg-green-600">Start 14-day Free Trial</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<p>&copy; 2025 GPTPayroll. All rights reserved.</p>
</div>
</footer>
</body>
</html>