82 lines
3.7 KiB
PHP
82 lines
3.7 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>GolfTracker - Home</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
<style>
|
|
.hero {
|
|
background: linear-gradient(rgba(13, 71, 161, 0.7), rgba(13, 71, 161, 0.7)), url('https://picsum.photos/seed/golf/1600/900');
|
|
background-size: cover;
|
|
background-position: center;
|
|
color: white;
|
|
padding: 8rem 0;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-light bg-white shadow-sm">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="#">GolfTracker</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
|
|
<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 active" href="index.php">Home</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="add_score.php">Enter Score</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<header class="hero">
|
|
<div class="container">
|
|
<h1 class="display-4 fw-bold">Track Your Golf Season</h1>
|
|
<p class="lead">An interactive golf tournament calculator that tracks stroke averages and number of putts per round for a golf team.</p>
|
|
<a href="add_score.php" class="btn btn-danger btn-lg mt-3">Enter a New Score</a>
|
|
</div>
|
|
</header>
|
|
|
|
<section class="py-5">
|
|
<div class="container">
|
|
<div class="row text-center">
|
|
<div class="col-md-4">
|
|
<img src="https://picsum.photos/seed/golfer/400/300" class="img-fluid rounded-circle mb-3" alt="A focused golfer taking a shot.">
|
|
<h3>Enter Scores Easily</h3>
|
|
<p>A simple form lets you enter scores, putts, penalties, and more for every hole.</p>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<img src="https://picsum.photos/seed/analysis/400/300" class="img-fluid rounded-circle mb-3" alt="A tablet showing golf analytics.">
|
|
<h3>Instant Analysis</h3>
|
|
<p>Get real-time totals for your round as you enter data, helping you track performance instantly.</p>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<img src="https://picsum.photos/seed/team/400/300" class="img-fluid rounded-circle mb-3" alt="A golf team celebrating.">
|
|
<h3>Track Your Team</h3>
|
|
<p>All statistics are tracked for the entire season, giving coaches and players valuable insights.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<footer class="py-4 bg-light text-center">
|
|
<div class="container">
|
|
<p class="mb-0">© <?php echo date("Y"); ?> GolfTracker. All Rights Reserved.</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html>
|