-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.html
More file actions
127 lines (119 loc) · 5.19 KB
/
menu.html
File metadata and controls
127 lines (119 loc) · 5.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Menu - BakedInAki</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="nav-container">
<a href="index.html" class="logo">
<img src="MadeInAki.png" alt="BakedInAki logo" class="logo-img">
<span class="logo-text">
<span class="baked">Baked</span><span class="in">in</span><span class="aki">Aki</span>
</span>
</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="menu.html">Menu</a></li>
<li><a href="order.html">Order</a></li>
<li><a href="track.html">Track Order</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="cart-icon" title="View Cart">
🛒
<span class="cart-count" style="display: none;">0</span>
</div>
<button class="mobile-menu-btn">☰</button>
</div>
</nav>
<!-- Page Header -->
<section style="background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFA500 100%); padding: 3rem 2rem; text-align: center;">
<h1 style="font-size: 2.5rem; margin-bottom: 0.5rem;">🥖 Our Menu 🥐</h1>
<p style="color: #333;">Freshly baked goods made with love</p>
</section>
<!-- Signature Product Banner -->
<section style="background: linear-gradient(135deg, #2d5016 0%, #4a7c23 100%); padding: 2rem; text-align: center; color: white;">
<div style="max-width: 800px; margin: 0 auto;">
<span style="background: var(--primary-yellow); color: #333; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: bold;">✨ SIGNATURE ITEM</span>
<h2 style="margin: 1rem 0 0.5rem; font-size: 2rem;">🍵 Cheese Matcha Bliss Bites</h2>
<p style="opacity: 0.9; margin-bottom: 1rem;">Our exclusive creation! Creamy cheese meets earthy matcha in perfectly portioned bliss bites.</p>
<p style="font-size: 1.5rem; font-weight: bold; color: var(--primary-yellow);">₱45.00</p>
</div>
</section>
<!-- Menu Section -->
<section class="section">
<!-- Search Bar -->
<div class="search-bar">
<input type="text" class="search-input" id="search-input" placeholder="🔍 Search for products..." onkeyup="searchProducts()">
</div>
<!-- Category Filter -->
<div class="category-filter">
<button class="filter-btn active" data-category="all">All Items</button>
<button class="filter-btn" data-category="signature">⭐ Signature</button>
<button class="filter-btn" data-category="breads">🍞 Breads</button>
<button class="filter-btn" data-category="cakes">🎂 Cakes</button>
<button class="filter-btn" data-category="pastries">🥧 Pastries</button>
<button class="filter-btn" data-category="cookies">🍪 Cookies & Snacks</button>
</div>
<!-- Products Grid -->
<div class="product-grid" id="products-grid">
<!-- Products loaded via JavaScript -->
</div>
</section>
<!-- Cart Sidebar -->
<div class="cart-overlay"></div>
<div class="cart-sidebar">
<div class="cart-header">
<h3>🛒 Your Cart</h3>
<button class="close-cart">×</button>
</div>
<div class="cart-items">
<!-- Cart items loaded via JavaScript -->
</div>
<div class="cart-footer">
<div class="cart-total">
<span>Total:</span>
<span class="cart-total-amount">₱0.00</span>
</div>
<a href="order.html" class="checkout-btn">Proceed to Checkout</a>
</div>
</div>
<!-- Footer -->
<footer class="footer">
<div class="footer-content">
<div class="footer-section">
<h4>🍞 BakedInAki</h4>
<p>Malakasang Bakery Sa Buong Dasmariñas</p>
</div>
<div class="footer-section">
<h4>Quick Links</h4>
<a href="menu.html">Menu</a>
<a href="order.html">Order Online</a>
<a href="track.html">Track Order</a>
<a href="contact.html">Contact</a>
</div>
<div class="footer-section">
<h4>Contact Us</h4>
<p>📍 Dasmariñas, Cavite</p>
<p>📞 Shared after order confirmation</p>
</div>
<div class="footer-section">
<h4>Store Hours</h4>
<p>Mon-Sat: 6AM - 8PM</p>
<p>Sunday: 7AM - 6PM</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 BakedInAki. All rights reserved.</p>
</div>
</footer>
<script src="data/products.js"></script>
<script src="js/main.js"></script>
<script src="js/menu.js"></script>
</body>
</html>