-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
197 lines (188 loc) · 8.43 KB
/
index.php
File metadata and controls
197 lines (188 loc) · 8.43 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
<?php //echo get_template_directory_uri(); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Luminary Spa | Premium Beauty Services</title>
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@300;400;600&display=swap" rel="stylesheet">
</head>
<body>
<!-- Header/Navigation -->
<header class="header">
<div class="container">
<div class="logo">
<h1>Luminary Spa</h1>
<p>Est. 2018</p>
</div>
<nav class="navbar">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#about">About</a></li>
<li><a href="#book">Book Now</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<div class="mobile-menu">
<i class="fas fa-bars"></i>
</div>
</div>
</header>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="hero-overlay"></div>
<div class="hero-content">
<h2>Rejuvenate Your Senses</h2>
<p>Premium spa treatments in the heart of the city</p>
<a href="#book" class="btn-primary">Book Your Session</a>
</div>
</section>
<!-- Services Section -->
<section id="services" class="services">
<div class="container">
<h2 class="section-title">Our Services</h2>
<div class="services-grid">
<div class="service-card">
<img src="https://images.pexels.com/photos/3762875/pexels-photo-3762875.jpeg" alt="Massage Therapy">
<h3>Massage Therapy</h3>
<p>From $89 | 60-90 min sessions</p>
<a href="#book" class="btn-secondary">Book Now</a>
</div>
<div class="service-card">
<img src="https://images.pexels.com/photos/3998024/pexels-photo-3998024.jpeg" alt="Facials">
<h3>Facials</h3>
<p>From $75 | Custom treatments</p>
<a href="#book" class="btn-secondary">Book Now</a>
</div>
<div class="service-card">
<img src="https://images.pexels.com/photos/3997373/pexels-photo-3997373.jpeg" alt="Manicure/Pedicure">
<h3>Nail Care</h3>
<p>From $55 | Gel & traditional</p>
<a href="#book" class="btn-secondary">Book Now</a>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="about">
<div class="container">
<div class="about-content">
<h2 class="section-title">Our Story</h2>
<p>Founded in 2018, Luminary Spa brings over a decade of expertise in holistic wellness. Our certified therapists combine traditional techniques with modern innovations to deliver transformative experiences.</p>
<p>We source only organic, cruelty-free products and maintain the highest standards of cleanliness and care.</p>
<div class="awards">
<div class="award">
<i class="fas fa-award"></i>
<span>Best Spa 2022</span>
</div>
<div class="award">
<i class="fas fa-award"></i>
<span>Eco-Certified</span>
</div>
</div>
</div>
<div class="about-image">
<img src="https://images.pexels.com/photos/673857/pexels-photo-673857.jpeg" alt="Spa Interior">
</div>
</div>
</section>
<!-- Booking Section -->
<section id="book" class="booking">
<div class="container">
<h2 class="section-title">Book Your Appointment</h2>
<form class="booking-form">
<div class="form-group">
<label for="name">Full Name</label>
<input type="text" id="name" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" required>
</div>
<div class="form-group">
<label for="phone">Phone</label>
<input type="tel" id="phone" required>
</div>
<div class="form-group">
<label for="service">Service</label>
<select id="service" required>
<option value="">Select a service</option>
<option value="massage">Massage Therapy</option>
<option value="facial">Facial Treatment</option>
<option value="nails">Manicure/Pedicure</option>
<option value="package">Full Day Package</option>
</select>
</div>
<div class="form-group">
<label for="date">Preferred Date</label>
<input type="date" id="date" required>
</div>
<div class="form-group">
<label for="time">Preferred Time</label>
<input type="time" id="time" required>
</div>
<button type="submit" class="btn-primary">Confirm Booking</button>
</form>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact">
<div class="container">
<div class="contact-info">
<h2 class="section-title">Visit Us</h2>
<address>
<p><i class="fas fa-map-marker-alt"></i> 123 Wellness Ave, City</p>
<p><i class="fas fa-phone"></i> +92 12345678</p>
<p><i class="fas fa-envelope"></i> hello@luminayspa.com</p>
</address>
<div class="hours">
<h3>Hours</h3>
<p>Mon-Fri: 9am - 8pm</p>
<p>Sat-Sun: 10am - 6pm</p>
</div>
<div class="social-links">
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
</div>
</div>
<div class="map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3022.215209509324!2d-73.98784492423956!3d40.74844097138991!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c259a9b3117469%3A0xd134e199a405a163!2sEmpire%20State%20Building!5e0!3m2!1sen!2sus!4v1687203846783!5m2!1sen!2sus" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-logo">
<h3>Luminary Spa</h3>
<p>Your oasis of relaxation</p>
</div>
<div class="footer-links">
<h4>Quick Links</h4>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#book">Book Now</a></li>
</ul>
</div>
<div class="footer-newsletter">
<h4>Join Our Newsletter</h4>
<form>
<input type="email" placeholder="Your email">
<button type="submit">Subscribe</button>
</form>
</div>
</div>
<div class="footer-bottom">
<p>© 2023 Luminary Spa. All rights reserved.</p>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>