-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
66 lines (56 loc) · 2.75 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
require_once __DIR__ . '/config/paths.php';
include __DIR__ . '/components/header.php';
?>
<main>
<section id="hero-index">
<div id="video-section">
<video id="video-hero" autoplay muted loop playsinline>
<source src="<?= BASE_PATH ?>/assets/index/snoop-hero.mp4" type="video/mp4">
Din webbläsare stöder inte HTML5-video.
</video>
<div class="video-content">
<div class="video-text">
<p class="video-small">Welcome To The Luxury Of The</p>
<h1 class="video-large"> D-O-Double-G's</h1>
</div>
<div class="video-buttons">
<a href="<?= BASE_PATH ?>/pages/booking/booking.php" class="video-button">Book Now</a>
<a href="#" class="video-button">Learn More</a>
</div>
</div>
</div>
<section id="welcoming">
<p>Welcome to Smooth Mansion, where every stay is as effortless as a Snoop Dogg beat. Experience the perfect blend of relaxation and style inspired by the Doggfather himself.</p>
<p>Unwind in G-funk-inspired suites or sip signature cocktails at the Gin & Juice Lounge. Smooth Oasis is more than a place to stay—it's a lifestyle.</p>
<p>Ready to live smooth? Book your stay now and join the vibe.</p>
</section>
<article id="spot">
<p>
Get yo spot
<a href="<?= BASE_PATH ?>/pages/booking/booking.php">
<button class="spot-button">here</button>
</a>
</p>
</article>
</section>
<section id="highlights">
<h2>Platinum Experiences</h2>
<p>Step into the world of laid-back luxury. From smooth vibes to first-class indulgence, our handpicked activities let you live the high life—Snoop style. Tap to explore and make every moment a hit.</p>
<article id="shortcuts">
<div class="shortcut">
<img src="<?= BASE_PATH ?>/assets/index/the-bling-shop.svg" alt="Gin & Juice Lounge" class="svg-shortcut">
</div>
<div class="shortcut">
<img src="<?= BASE_PATH ?>/assets/index/gin-and-juice.svg" alt="Gin & Juice Lounge" class="svg-shortcut">
</div>
<div class="shortcut">
<img src="<?= BASE_PATH ?>/assets/index/g-funk-nights.svg" alt="G-funk nights" class="svg-shortcut">
</div>
<div class="shortcut">
<img src="<?= BASE_PATH ?>/assets/index/marthas-kitchen.svg" alt="Martha's Kitchen" class="svg-shortcut">
</div>
</article>
</section>
</main>
<?php include __DIR__ . '/components/footer.php'; ?>