37 lines
1.7 KiB
PHP
37 lines
1.7 KiB
PHP
<?php
|
|
// Run DB setup once
|
|
require_once __DIR__ . '/db/setup.php';
|
|
|
|
$pageTitle = 'Luxury Carpets B2B - High-End Solutions';
|
|
|
|
include __DIR__ . '/includes/header.php';
|
|
?>
|
|
|
|
<main>
|
|
<!-- Hero Section -->
|
|
<div class="container-fluid p-0">
|
|
<div style="background: url('<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? 'https://images.pexels.com/photos/1643384/pexels-photo-1643384.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2'); ?>') no-repeat center center; background-size: cover; height: 60vh;">
|
|
<div class="d-flex justify-content-center align-items-center h-100" style="background-color: rgba(0, 0, 0, 0.4);">
|
|
<div class="text-white text-center">
|
|
<h1 class="display-3" style="font-family: 'Georgia', serif;">Exquisite Carpets for Discerning Businesses</h1>
|
|
<p class="lead">Discover unparalleled quality and bespoke designs for your luxury projects.</p>
|
|
<a href="contact.php" class="btn btn-primary btn-lg mt-3">Request a Consultation</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Intro Section -->
|
|
<div class="container my-5 py-5 text-center">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-8">
|
|
<h2>The Foundation of Luxury</h2>
|
|
<p class="lead text-muted">
|
|
At Luxury Carpets, we provide more than just flooring; we deliver a statement of elegance and craftsmanship. Our B2B services cater to architects, interior designers, and contractors who demand the very best for their clients.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<?php include __DIR__ . '/includes/footer.php'; ?>
|