timekeeper-pro / index.html
jet-2007's picture
Build a Cross‑Platform Time Clock App (Multi‑Company, Employees, Geotagging, Reports)
59f8f47 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TimeKeeper Pro | Modern Time Tracking</title>
<meta name="description" content="Cross-platform time clock app with geotagging and reporting">
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: {
50: '#f0f9ff',
100: '#e0f2fe',
500: '#3b82f6',
600: '#2563eb',
700: '#1d4ed8',
},
secondary: {
50: '#f8fafc',
100: '#f1f5f9',
500: '#64748b',
600: '#475569',
700: '#334155',
}
}
}
}
}
</script>
</head>
<body class="bg-gray-50 min-h-screen">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<section class="hero bg-primary-50 rounded-xl p-8 mb-12">
<div class="flex flex-col md:flex-row items-center gap-8">
<div class="md:w-1/2">
<h1 class="text-4xl md:text-5xl font-bold text-primary-700 mb-4">Time Tracking Made Simple</h1>
<p class="text-lg text-secondary-600 mb-6">Geotagged clock-in/out, multi-company support, and powerful reporting for businesses of all sizes.</p>
<div class="flex gap-4">
<a href="/login" class="bg-primary-600 hover:bg-primary-700 text-white px-6 py-3 rounded-lg font-medium shadow-md transition-colors">
Get Started
</a>
<a href="/features" class="border border-primary-600 text-primary-600 hover:bg-primary-50 px-6 py-3 rounded-lg font-medium transition-colors">
Learn More
</a>
</div>
</div>
<div class="md:w-1/2">
<img src="http://static.photos/technology/1024x576/42" alt="Time tracking dashboard" class="rounded-lg shadow-xl">
</div>
</div>
</section>
<section class="features mb-16">
<h2 class="text-3xl font-bold text-center mb-12 text-secondary-700">Key Features</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="feature-card bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition-shadow">
<div class="bg-primary-100 w-12 h-12 rounded-full flex items-center justify-center mb-4">
<i data-feather="clock" class="text-primary-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2">One-Tap Clocking</h3>
<p class="text-secondary-600">Simple in/out interface with geotagging and offline support.</p>
</div>
<div class="feature-card bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition-shadow">
<div class="bg-primary-100 w-12 h-12 rounded-full flex items-center justify-center mb-4">
<i data-feather="users" class="text-primary-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Multi-Company</h3>
<p class="text-secondary-600">Manage multiple businesses with role-based access control.</p>
</div>
<div class="feature-card bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition-shadow">
<div class="bg-primary-100 w-12 h-12 rounded-full flex items-center justify-center mb-4">
<i data-feather="bar-chart-2" class="text-primary-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Advanced Reporting</h3>
<p class="text-secondary-600">Export CSV/PDF reports with overtime, breaks, and geofencing.</p>
</div>
</div>
</section>
<section class="cta bg-primary-600 text-white rounded-xl p-8 text-center">
<h2 class="text-3xl font-bold mb-4">Ready to Simplify Your Time Tracking?</h2>
<p class="text-primary-100 mb-6 max-w-2xl mx-auto">Join thousands of businesses using TimeKeeper Pro to manage their workforce efficiently.</p>
<a href="/register" class="bg-white text-primary-600 hover:bg-gray-100 px-8 py-3 rounded-lg font-semibold inline-block shadow-md transition-colors">
Start Free Trial
</a>
</section>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>
feather.replace();
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>