42 lines
2.5 KiB
PHP
42 lines
2.5 KiB
PHP
<footer class="bg-dark text-white py-5 mt-5">
|
|
<div class="container">
|
|
<div class="row g-4">
|
|
<div class="col-md-4">
|
|
<h5 class="fw-bold mb-4 text-primary">AFG CARS</h5>
|
|
<p class="text-muted">AFG CARS is Afghanistan's premier digital automotive marketplace, connecting buyers and sellers with transparency and technology.</p>
|
|
</div>
|
|
<div class="col-md-2 offset-md-1">
|
|
<h6 class="fw-bold mb-4">Company</h6>
|
|
<ul class="list-unstyled">
|
|
<li class="mb-2"><a href="<?php echo APP_URL; ?>about.php" class="text-muted text-decoration-none hover-white">About Us</a></li>
|
|
<li class="mb-2"><a href="<?php echo APP_URL; ?>branches.php" class="text-muted text-decoration-none hover-white">Branches</a></li>
|
|
<li class="mb-2"><a href="<?php echo APP_URL; ?>contact.php" class="text-muted text-decoration-none hover-white">Contact Us</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="col-md-2">
|
|
<h6 class="fw-bold mb-4">Marketplace</h6>
|
|
<ul class="list-unstyled">
|
|
<li class="mb-2"><a href="<?php echo APP_URL; ?>cars.php" class="text-muted text-decoration-none hover-white">Browse Cars</a></li>
|
|
<li class="mb-2"><a href="<?php echo APP_URL; ?>user/add-car.php" class="text-muted text-decoration-none hover-white">Sell Your Car</a></li>
|
|
<li class="mb-2"><a href="<?php echo APP_URL; ?>login.php" class="text-muted text-decoration-none hover-white">Login / Register</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="col-md-3">
|
|
<h6 class="fw-bold mb-4">Newsletter</h6>
|
|
<p class="text-muted small mb-3">Subscribe for the latest car arrivals.</p>
|
|
<div class="input-group">
|
|
<input type="email" class="form-control bg-transparent border-secondary text-white" placeholder="Email">
|
|
<button class="btn btn-primary btn-sm">Join</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<hr class="my-5 border-secondary">
|
|
<div class="text-center">
|
|
<p class="small text-muted mb-0">© 2026 AFG CARS - Offline Edition. Developed for University Final Year Project.</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="<?php echo APP_URL; ?>assets/bootstrap/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html> |