Compare commits

...

3 Commits

Author SHA1 Message Date
dugo3number2 f320f54d9d Add order confirmation 2024-08-19 15:47:31 -05:00
dugo3number2 4b271d28fb Remove about page 2024-08-19 15:47:04 -05:00
dugo3number2 178bc1f5da Remove note to judges 2024-08-19 15:46:52 -05:00
3 changed files with 45 additions and 68 deletions

View File

@ -1,53 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - Beacon Blend</title>
<link rel="stylesheet" href="../assets/css/main.css" />
</head>
<body>
<header>
<h1>Beacon Blend</h1>
<nav>
<ul>
<li><a href="..">Home</a></li>
<li><a href="#" id="current">About</a></li>
<li><a href="../menu">Menu</a></li>
<li><a href="../order">Order</a></li>
</ul>
</nav>
</header>
<main class="top">
<h2 class="title">About</h2>
<section>
<h2 class="title">About LCS Beacon Blend</h2>
<div class="img-container">
<img src="../assets/img/shop.jpg" />
</div>
<p>Beacon Blend is the coffee shop run by Lighthouse Christian School as a fundraiser. We serve many varieties of coffee with all of your favorite add-ons. All of our profit supports us to go to A.C.E.'s Regional and International Student Conventions. There, we compete in events in categories such as music, platform, athletics, art, photography, and more. The trip to ISC is where most of the money is spent because of the distance. We appreciate all of the support we receive through the coffee shop, and we aim to please all of our customers with the best service and quality we can.</p>
</section>
<section>
<h2 class="title">About Lighthouse Christian School</h2>
<div class="img-container">
<img src="../assets/img/ace.jpg" />
</div>
<p>Lighthouse Christian School is the model school of A.C.E. School of Tomorrow, located in the world headquarters. Although we are a small school, we make up for it with our unique personalities and interests, as well as our competition at convention. We have other fundraisers besides the coffee shop, like bake sales, vending machines, dinner nights, banquets, coupon cards, and more. All of this money helps us to go to RSC and ISC.</p>
</section>
</main>
<footer>
<span>Beacon Blend</span><br />
<nav>
<ul>
<li><a href="..">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="../menu">Menu</a></li>
<li><a href="../order">Order</a></li>
</ul>
</nav><br />
<span>&copy;2024 Lighthouse Christian School</span><br />
<span>Created for LCS and Student Conventions by David Jentes</span>
</footer>
<script src="../assets/js/navhide.js"></script>
</body>
</html>

View File

@ -1,15 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Note to judges</title>
</head>
<body>
<h1>Note to judges</h1>
<p>The order page is disabled on this version of the site. I plan to use it to replace the current system I have created as it looks and works much better. This version, however, does not have the backend needed to process orders. This will go to an order placed screen in production. Also, thank you for all that you do to help judge our projects for convention! I really appreciate it!</p>
<span>- David</span><br />
<a href="order/index.html">Return to order page</a><br />
<a href="index.html">Return to home</a>
</body>
</html>

View File

@ -0,0 +1,45 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Order confirmed - Beacon Blend</title>
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body>
<header>
<h1>Beacon Blend</h1>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="about">About</a></li>
<li><a href="menu">Menu</a></li>
<li><a href="order">Order</a></li>
</ul>
</nav>
</header>
<div class="cover">
<h1 class="cover-tagline">The best coffee made by the best students</h1>
</div>
<main>
<section>
<!-- Information -->
<h1>Order confirmed</h1>
<p>You will be contacted at your provided phone number or extension if provided when your coffee is ready.</p>
<p>If, for some reason, your coffee order is wrong, please contact Mr. Shiverdeck or ask a student at the coffee shop.</p>
<p>To have an order cancelled, please contact Mr. Shiverdeck.</p>
</section>
<footer>
<span>Beacon Blend</span><br />
<ul>
<li><a href="#">Home</a></li>
<li><a href="about">About</a></li>
<li><a href="menu">Menu</a></li>
<li><a href="order">Order</a></li>
</ul><br />
<span>&copy;2024 Lighthouse Christian School</span><br />
<span>Created for LCS and Student Conventions by David Jentes</span>
</footer>
<script src="assets/js/navhide.js"></script>
</body>
</html>