114 lines
5.0 KiB
PHP
114 lines
5.0 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>LogPort - Indian Logistics Marketplace</title>
|
|
<meta name="description" content="<?php echo htmlspecialchars($_SERVER['PROJECT_DESCRIPTION'] ?? 'LogPort is a production-ready dual-sided logistics marketplace platform connecting customers who need to ship goods with transporters.'); ?>">
|
|
<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 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>
|
|
body {
|
|
font-family: 'Roboto', sans-serif;
|
|
background-color: #F8F9FA;
|
|
}
|
|
.navbar-brand {
|
|
font-weight: 700;
|
|
}
|
|
.hero {
|
|
background: linear-gradient(45deg, #0D6EFD, #0A58CA);
|
|
color: white;
|
|
padding: 100px 0;
|
|
text-align: center;
|
|
}
|
|
.hero h1 {
|
|
font-weight: 700;
|
|
font-size: 3.5rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-light bg-white shadow-sm">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="/">
|
|
<i class="bi bi-truck"></i> LogPort
|
|
</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 active" href="/">Home</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="/place-order.php">Ship Now</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#">Track Order</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="btn btn-primary ms-lg-2" href="#">Login / Register</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<header class="hero">
|
|
<div class="container">
|
|
<h1 class="display-4">Your Goods, Our Network.</h1>
|
|
<p class="lead">The future of logistics in India. Connecting you with reliable transporters, in real-time.</p>
|
|
<a href="/place-order.php" class="btn btn-light btn-lg mt-3">
|
|
<i class="bi bi-box-seam"></i> Ship Now
|
|
</a>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="container mt-5 mb-5">
|
|
<section class="text-center">
|
|
<h2>How It Works</h2>
|
|
<p class="lead text-muted">A simple, three-step process to get your goods moving.</p>
|
|
<div class="row mt-4">
|
|
<div class="col-md-4">
|
|
<div class="card border-0 p-3">
|
|
<div class="card-body">
|
|
<i class="bi bi-ui-checks-grid fs-1 text-primary"></i>
|
|
<h3 class="h4 mt-3">1. Place Your Order</h3>
|
|
<p>Enter your pickup and delivery details, and get an instant quote.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<div class="card border-0 p-3">
|
|
<div class="card-body">
|
|
<i class="bi bi-truck-front fs-1 text-primary"></i>
|
|
<h3 class="h4 mt-3">2. Transporter Connects</h3>
|
|
<p>Our network of verified transporters accepts your order.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<div class="card border-0 p-3">
|
|
<div class="card-body">
|
|
<i class="bi bi-geo-alt fs-1 text-primary"></i>
|
|
<h3 class="h4 mt-3">3. Track Your Shipment</h3>
|
|
<p>Monitor your goods with real-time tracking until they reach their destination.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<footer class="bg-white border-top text-center p-4">
|
|
<p class="mb-0">© <?php echo date("Y"); ?> LogPort. All Rights Reserved.</p>
|
|
</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?v=<?php echo time(); ?>"></script>
|
|
</body>
|
|
</html>
|