105 lines
5.3 KiB
PHP
105 lines
5.3 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>TeaTime Payroll</title>
|
|
<meta name="description" content="Your Pay, Your Way. A revolutionary payroll service with optional tax withholding.">
|
|
<meta name="keywords" content="payroll service, employee pay, tax opt-out, early pay draw, flexible payroll, timekeeping, financial freedom, Built with Flatlogic Generator">
|
|
<meta property="og:title" content="TeaTime Payroll">
|
|
<meta property="og:description" content="Your Pay, Your Way. A revolutionary payroll service with optional tax withholding.">
|
|
<meta property="og:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? '', ENT_QUOTES, 'UTF-8'); ?>">
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? '', ENT_QUOTES, 'UTF-8'); ?>">
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
|
<link rel="stylesheet" href="assets/css/custom.css">
|
|
</head>
|
|
<body>
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top">
|
|
<div class="container">
|
|
<a class="navbar-brand fw-bold" href="#">TeaTime Payroll</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarNav">
|
|
<ul class="navbar-nav ms-auto">
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#features">Features</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#pricing">Pricing</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="dashboard.php">Login</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="btn btn-primary ms-lg-2" href="dashboard.php">Sign Up</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<header class="hero-section text-white text-center">
|
|
<div class="container">
|
|
<h1 class="display-4 fw-bold">Your Pay, Your Way.</h1>
|
|
<p class="lead my-4">Finally, a payroll service that gives you control. Opt-out of tax withholding and access your earnings when you need them.</p>
|
|
<a href="dashboard.php" class="btn btn-light btn-lg">Get Started Now</a>
|
|
</div>
|
|
</header>
|
|
|
|
<section id="features" class="py-5">
|
|
<div class="container text-center">
|
|
<h2 class="mb-5">A New Era of Payroll</h2>
|
|
<div class="row">
|
|
<div class="col-md-4 mb-4">
|
|
<div class="card h-100 shadow-sm border-0">
|
|
<div class="card-body">
|
|
<i class="bi bi-shield-check display-3 text-primary"></i>
|
|
<h3 class="h4 my-3">You Control Your Taxes</h3>
|
|
<p class="text-muted">Choose to opt-out of employee tax withholding and manage your own tax obligations. We'll still show you the estimates.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-4 mb-4">
|
|
<div class="card h-100 shadow-sm border-0">
|
|
<div class="card-body">
|
|
<i class="bi bi-clock-history display-3 text-primary"></i>
|
|
<h3 class="h4 my-3">Access Pay Early</h3>
|
|
<p class="text-muted">Don't wait for payday. Draw from your approved hours a week in advance when emergencies come up.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-4 mb-4">
|
|
<div class="card h-100 shadow-sm border-0">
|
|
<div class="card-body">
|
|
<i class="bi bi-calendar2-week display-3 text-primary"></i>
|
|
<h3 class="h4 my-3">Flexible Pay Schedules</h3>
|
|
<p class="text-muted">Get paid weekly or bi-weekly. You decide what works best for your financial rhythm.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="pricing" class="py-5 bg-light">
|
|
<div class="container text-center">
|
|
<h2 class="mb-5">Simple, Transparent Pricing</h2>
|
|
<p class="lead">Contact us for a custom quote for your business.</p>
|
|
</div>
|
|
</section>
|
|
|
|
<footer class="py-4">
|
|
<div class="container text-center">
|
|
<p class="mb-0 text-muted">© <?php echo date("Y"); ?> TeaTime Payroll. All Rights Reserved.</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script src="assets/js/main.js"></script>
|
|
</body>
|
|
</html>
|