-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutus.php
286 lines (271 loc) · 11.4 KB
/
aboutus.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
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
<!DOCTYPE html>
<!--CSD460 - Red Team
Joshua Rex, Taylor Nairn, Benjamin Andrew, Wyatt Hudgins
Professor Sue Sampson
This page displays information about Moffat Lodge and how to contact
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
<title>About Us - Moffat Bay Lodge</title>
</head>
<body>
<div class="navbar d-flex justify-content-between bg-light sticky-top py-3">
<div class="container">
<a href="index.php">
<div class="d-flex">
<img class="main-logo" src="images/logo.png" alt="Moffat Bay Lodge">
<!--
Maynard J. (2012). salish salmon
-->
</div>
</a>
<div class="main-menu">
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="aboutus.php">About</a></li>
<li><a href="attractions.php">Attractions</a></li>
<li><a href="book.php">Reservations</a></li>
<?php
session_start(); // Start the session
// Check if the user is logged in
if (isset($_SESSION['user_id'])) {
echo '<li class="nav-item dropdown">';
echo '<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">' . $_SESSION['user_id'] . '</a>';
echo '<ul class="dropdown-menu" aria-labelledby="navbarDropdown">';
echo '<li><a class="dropdown-item" href="profile.php">Profile</a></li>';
echo '<li><a class="dropdown-item" href="logout.php">Logout</a></li>';
echo '</ul>';
echo '</li>';
} else {
// If not logged in, display the login link
echo '<li><a href="login.php">Login</a></li>';
}
?>
</ul>
</div>
</div>
</div>
<div class="bg-light container">
<div class="row spacer">
<div class="col-12 px-5 text-center">
<h1 class="color-primary underline-secondary">About Us</h1>
</div>
</div>
<div class="row pt-3 width-80">
<div class="col-12">
<p class="fs-24">Moffat Bay Lodge is a stunning resort located in
Joviedsa, one of the many beautiful San Juan Islands located in
northern Washington. Built in 2023, expect the latest amenities
while being surrounded by breathtaking views and unforgettable
experiences. Our lodge provides the perfect blend of modern luxury
and timeless nature, providing fine dining restaurants in view of
our bay and famous lighthouse. Embrace your adventurous side with
hiking, swimming, diving, whale watching, and kayaking in our
picturesque piece of paradise. It is an ideal destination for
couples, families, nature enthusiasts, and those who just want to
get away from the humdrum of everyday life.</p>
<p class="fs-24">Moffat Bay can be reached by taking the Orca
Islands Ferry from the Anacortes terminal. If flying into Seattle,
the terminal is about a 2-hour drive north by car or bus. You can
also take a train to Mt. Vernon Washington and travel by bus from
there. For those wanting an expedited experience, you can also fly
directly into the San Juan Islands via Roche Harbor (RCE) or Friday
Harbor (FRD).</p>
</div>
</div>
<div class="row spacer">
<div class="col-12 px-5 text-center">
<h1 class="color-primary underline-secondary">What We Offer</h1>
</div>
</div>
<div class="row pt-3 width-80">
<div class="col-md-6 d-flex flex-column mt-auto mb-auto">
<p class="fs-24">
Our lodge offers a variety of cabins to suit your needs. Whether
you are looking for a cozy cabin for two or a larger cabin for a
family, we have you covered. Our cabins are equipped with modern
amenities, including a kitchen, living room, and a private deck
with a view of the bay. We also offer a variety of room types,
including standard rooms, suites, and deluxe rooms. Our rooms are
designed to provide you with the utmost comfort and relaxation
during your stay.
</p>
</div>
<div class="col-md-6">
<img src="images/cabins-about-us.jpeg" alt="Cabins at Moffat Bay Lodge" class="img-fluid rounded">
<!--
Src: https://stock.adobe.com/search/images?filters%5Bcontent_type%3Aphoto%5D=1&hide_panel=true&k=bay+lodge+cabins&search_type=recentsearch&asset_id=754073270
-->
</div>
</div>
<div class="row pt-3 width-80 mt-5">
<div class="col-md-6">
<img src="images/scenic-view.jpeg" alt="Mountain View at Moffat Bay Lodge" class="img-fluid rounded">
<!--
Src: https://stock.adobe.com/search/images?filters%5Bcontent_type%3Aphoto%5D=1&filters%5Bcontent_type%3Aimage%5D=1&k=scenic+mountain+view&order=relevance&safe_search=1&limit=100&search_page=1&search_type=usertyped&acp=&aco=scenic+mountain+view&get_facets=0&asset_id=697336176
-->
</div>
<div class="col-md-6 d-flex flex-column mt-auto mb-auto">
<p class="fs-24">
Our cabins are surrounded by scenic mountain views, providing a
peaceful and tranquil setting for your stay. You can enjoy
breathtaking sunsets from your private deck or take a leisurely
stroll through our lush gardens. For those looking to explore the
area, we offer a variety of outdoor activities, including hiking,
biking, and fishing. Our lodge is also home to a variety of
wildlife, including deer, eagles, and otters, making it the perfect
destination for nature lovers. Whether you are looking for a
relaxing getaway or an adventure-filled vacation, Moffat Bay Lodge
has something for everyone.
</p>
</div>
</div>
<div class="row spacer">
<div class="col-12 px-5 text-center">
<h1 class="color-primary underline-secondary">Our Team</h1>
</div>
</div>
<div class="row pt-3 width-80">
<div class="col-md-3">
<img src="images/Joshua.png" alt="Team Member 1" class="img-fluid rounded">
<!--
Src: From Joshua Rex on Discord
-->
</div>
<div class="col-md-9">
<h3 class="fs-24">Joshua Rex</h3>
<p class="fs-24">General Manager</p>
<p>
Joshua is the General Manager of Moffat Bay Lodge. He has over 20 years of experience in the
hospitality industry and is dedicated to providing guests with an exceptional experience. Benjamin
oversees all operations at the lodge and ensures that guests receive the highest level of service.
He is passionate about creating a welcoming and relaxing environment for guests to enjoy.
</p>
</div>
</div>
<div class="row pt-3 width-80">
<div class="col-md-3">
<img src="images/Benjamin.jpg" alt="Team Member 2" class="img-fluid rounded">
<!--
Src: From Benjamin Andrew on Discord
-->
</div>
<div class="col-md-9">
<h3 class="fs-24">Benjamin Andrew</h3>
<p class="fs-24">Sales Manager</p>
<p>
Benjamin is the Sales Manager at Moffat Bay Lodge, where he brings over two decades of expertise in
the hospitality industry to his role. Tasked with driving the lodge's sales efforts, Benjamin
develops and implements strategies to enhance guest acquisition and retention. He is committed to
ensuring that every visitor experiences top-tier service, and his passion for fostering a warm and
inviting atmosphere is evident in his approach to guest relations. Under his leadership, the sales
team is motivated to achieve excellence and exceed targets, further establishing the lodge as a
premier destination.
</p>
</div>
</div>
<div class="row pt-3 width-80">
<div class="col-md-3">
<img src="images/wyatt.jpg" alt="Team Member 3" class="img-fluid rounded">
<!--
Src: From Wyatt Hudgins on LinkedIn
-->
</div>
<div class="col-md-9">
<h3 class="fs-24">Wyatt Hudgins</h3>
<p class="fs-24">Team Member</p>
<p>
Wyatt is a key team member at Moffat Bay Lodge, boasting ten years of experience in maintaining the
pristine condition of the lodge’s grounds. His role is crucial in managing the various landscapes
that enhance the beauty and appeal of the property. Dedicated to upholding the highest standards of
outdoor aesthetics, Wyatt ensures that all areas are well-kept and welcoming for guests. His
expertise in groundskeeping contributes significantly to the overall guest experience, making Moffat
Bay Lodge a visually enchanting retreat.
</p>
</div>
</div>
<div class="row pt-3 width-80">
<div class="col-md-3">
<img src="images/taylor.jpg" alt="Team Member 3" class="img-fluid rounded">
<!--
Src: From Taylor Nairn on Discord
-->
</div>
<div class="col-md-9">
<h3 class="fs-24">Taylor Nairn</h3>
<p class="fs-24">Head Chef</p>
<p>
Taylor is the Head Chef at the Moffat Bay Lodge restaurant, where he brings a decade of culinary
expertise to the table. With ten years of experience in creating exquisite dishes, he is pivotal in
defining the dining experience at the lodge. Taylor’s passion for gastronomy shines through in his
innovative menus that highlight local ingredients and flavors. His leadership in the kitchen ensures
that each meal is not just nourishing but a memorable part of the guests' stay at Moffat Bay.
Taylor's commitment to culinary excellence helps set the lodge apart as a destination for both
outstanding hospitality and exceptional dining. </p>
</div>
</div>
<div class="row spacer">
<div class="col-12 px-5 text-center">
<h1 class="color-primary underline-secondary">Contact Us</h1>
</div>
</div>
<div class="row pt-3 width-80">
<div class="col-12">
<p class="fs-24">Get in touch with Moffat Bay Lodge for inquiries,
reservations, or any assistance you need.</p>
<ul class="list-unstyled fs-24">
<li>Email: [email protected]</li>
<li>Phone: +1 (555) 123-4567</li>
<li>Address:<br>420 Moffat Bay Road<br>Joviedsa Island, Washington
98250
</li>
</ul>
</div>
</div>
</div>
<footer class="text-light pt-4 pb-2">
<div class="row width-80">
<!-- Footer logo and description -->
<div class="col-md-4 mb-3 ps-5">
<img src="images/logo.png" alt="moffat Bay Lodge" class="footer-logo mb-2"> <small
class="d-block mb-3">© 2024
Moffat Bay Lodge. All rights reserved.</small>
</div>
<!-- Footer navigation -->
<div class="col-md-4 mb-3">
<h5>Links</h5>
<ul class="list-unstyled text-small">
<li><a href="index.php">Home</a></li>
<li><a href="aboutus.php">About</a></li>
<li><a href="attractions.php">Attractions</a></li>
<li><a href="book.php">Reservations</a></li>
</ul>
</ul>
</div>
<!-- Additional footer content -->
<div class="col-md-4 mb-3">
<h5>Contact Information</h5>
<ul class="list-unstyled text-small">
<li>Phone: (555) 123-4567</li>
<li>Email: [email protected]</li>
</ul>
<h5>Follow Us</h5>
<!-- Social media links -->
<ul class="list-inline">
<li class="list-inline-item"><a href="#">Facebook</a></li>
<li class="list-inline-item"><a href="#">Instagram</a></li>
<li class="list-inline-item"><a href="#">Twitter</a></li>
</ul>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
</body>
</html>