32 lines
1.2 KiB
PHP
32 lines
1.2 KiB
PHP
<?php
|
|
$page_title = 'Home';
|
|
require_once 'partials/header.php';
|
|
?>
|
|
|
|
<!-- ======= Hero Section ======= -->
|
|
<section id="hero" class="hero">
|
|
<div class="container position-relative">
|
|
<div class="row gy-5" data-aos="fade-in">
|
|
<div class="col-lg-12 text-center">
|
|
<h1>Come See The World With Us</h1>
|
|
<p>Your journey to luxury and adventure begins here.</p>
|
|
<div class="col-md-8 offset-md-2 mt-5">
|
|
<div class="input-group input-group-lg">
|
|
<input type="text" class="form-control" placeholder="Search for your dream destination...">
|
|
<button class="btn btn-primary" type="button" id="button-addon2" style="background-color: var(--primary-color); border-color: var(--primary-color);">Search</button>
|
|
</div>
|
|
</div>
|
|
<div class="mt-5">
|
|
<a href="tours.php" class="btn btn-primary btn-lg" style="background-color: var(--primary-color); border-color: var(--primary-color);">View All Tours</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!-- End Hero Section -->
|
|
|
|
<main id="main">
|
|
<!-- Other sections will be added here -->
|
|
</main><!-- End #main -->
|
|
|
|
<?php require_once 'partials/footer.php'; ?>
|