36058-vm/index.php
Flatlogic Bot cf46b5c1d4 001
2025-11-23 04:19:01 +00:00

70 lines
2.8 KiB
PHP

<?php
// Include header
require_once 'partials/header.php';
// --- Data Simulation ---
// In a real application, this would come from a database.
$featured_tours = [
[
'id' => 1,
'title' => 'Parisian Dreams',
'description' => 'Experience the romance and charm of the City of Light.',
'price' => '1,800',
'image' => 'https://images.unsplash.com/photo-1522093007474-d86e9bf7ba6f?q=80&w=1974&auto=format&fit=crop'
],
[
'id' => 2,
'title' => 'Tokyo Neon Nights',
'description' => 'Explore the vibrant culture and futuristic landscapes of Tokyo.',
'price' => '2,500',
'image' => 'https://images.unsplash.com/photo-1542051841857-5f90071e7989?q=80&w=2070&auto=format&fit=crop'
],
[
'id' => 3,
'title' => 'Roman Holiday',
'description' => 'Walk through history in the ancient streets of Rome.',
'price' => '2,200',
'image' => 'https://images.unsplash.com/photo-1552832230-c0197dd311b5?q=80&w=1974&auto=format&fit=crop'
]
];
?>
<!-- Hero Section -->
<header class="hero">
<div class="container">
<h1>Your Journey Begins Here.</h1>
<p>Discover breathtaking tours, find your dream job abroad, and let us handle the visa details.</p>
<a href="#featured-tours" class="btn btn-primary btn-lg">Explore Tours</a>
</div>
</header>
<!-- Main Content -->
<main class="container my-5">
<!-- Featured Tours Section -->
<section id="featured-tours" class="py-5">
<h2 class="section-title">Featured Tours</h2>
<div class="row g-4">
<?php foreach ($featured_tours as $tour): ?>
<div class="col-md-4">
<div class="card tour-card">
<img src="<?php echo htmlspecialchars($tour['image']); ?>" class="card-img-top" alt="<?php echo htmlspecialchars($tour['title']); ?>" style="height: 200px; object-fit: cover;">
<div class="card-body">
<h5 class="card-title"><?php echo htmlspecialchars($tour['title']); ?></h5>
<p class="card-text"><?php echo htmlspecialchars($tour['description']); ?></p>
<div class="d-flex justify-content-between align-items-center">
<p class="card-price mb-0">$<?php echo htmlspecialchars($tour['price']); ?></p>
<a href="#" class="btn btn-sm btn-outline-primary" style="color: var(--primary-color); border-color: var(--primary-color);">View Details</a>
</div>
</div>
</div>
</div>
<?php endforeach; ?>
</div>
</section>
</main>
<?php
// Include footer
require_once 'partials/footer.php';
?>