-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (74 loc) · 2.8 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>Bailey's Deals</title>
<link rel="stylesheet" href="styles.css">
<link rel="manifest" href="manifest.json">
<!-- Firebase Configuration -->
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-messaging.js"></script>
<script>
// Your web app's Firebase configuration
var firebaseConfig = {
apiKey: "YOUR_API_KEY",
authDomain: "YOUR_AUTH_DOMAIN",
projectId: "YOUR_PROJECT_ID",
storageBucket: "YOUR_STORAGE_BUCKET",
messagingSenderId: "YOUR_MESSAGING_SENDER_ID",
appId: "YOUR_APP_ID",
measurementId: "YOUR_MEASUREMENT_ID"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
</script>
</head>
<body>
<header>
<div class="hamburger-menu" id="hamburger-menu">☰</div>
<div class="banner">
<img src="images/logo.png" alt="Bailey's Discount Center Logo" class="logo" onclick="window.location.href='index.html'">
</div>
<div class="notification-bell">
<img src="images/bell.png" alt="Notifications" class="bell-icon" id="bell-icon">
<span class="notification-count" id="notification-count">4</span> <!-- Example count -->
</div>
</header>
<nav id="nav-menu" class="nav-menu">
<a href="index.html">Home</a>
<a href="about.html">About Us</a>
<a href="hours.html">Store Hours</a>
<a href="gallery.html"> Photo Gallery</a>
</nav>
<main>
<section id="deals">
<h2>Latest Deals</h2>
<div class="deal">
<img src="images/deal1.jpg" alt="Dining Sets Deal">
<p>Martin Svensson Dining Sets - $599.99</p>
</div>
<div class="deal">
<img src="images/deal2.jpg" alt="Hammock Deal">
<p>Bliss Hammock with Stand - $99.99</p>
</div>
<div class="deal">
<img src="images/deal3.jpg" alt="Shine Water Deal">
<p>Shine Water - $2.99/case</p>
</div>
<div class="deal">
<img src="images/deal4.jpg" alt="Garden Planters Deal">
<p>Modular Garden Planters - from $4.99</p>
</div>
</section>
</main>
<footer>
<p>Stop by our store: 5900 S. Range Rd., North Judson, IN</p>
</footer>
<div id="popup">
<div id="notification-list"></div>
<button class="close-btn" id="close-btn">Close</button>
</div>
<script src="renderer.js"></script>
</body>
</html>