-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeals.html
More file actions
73 lines (67 loc) · 3.47 KB
/
deals.html
File metadata and controls
73 lines (67 loc) · 3.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Today's Hot Deals & Offers | BharatBazaro</title>
<meta name="description"
content="Browse the hottest deals of the day. Handpicked discounts on mobiles, electronics, fashion, and home essentials. Prices updated daily.">
<meta name="keywords"
content="todays top deals, amazon lightning deals, daily offers app, best discount shopping site, bharatbazaro hot deals">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="deals.css"> <!-- New styles for deals -->
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="app-container">
<!-- Navigation -->
<nav class="glass-nav">
<div class="logo">BharatBazaro</div>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="bargain.html">Bargain Zone</a>
<a href="deals.html" class="active">Hot Deals</a>
<a href="signup.html">Sign Up</a>
</div>
</nav>
<!-- Main Content with Sidebar Layout -->
<div class="deals-layout">
<!-- Sidebar Filters -->
<aside class="deals-sidebar glass-panel">
<h3>Categories</h3>
<div class="sidebar-filters" id="sidebar-filters-container">
<button class="filter-side-btn active" id="btn-cat-all" data-category="all"><i
class="fas fa-th-large"></i> All Deals</button>
<button class="filter-side-btn" id="btn-cat-mobiles" data-category="mobiles"><i
class="fas fa-mobile-alt"></i> Mobiles</button>
<button class="filter-side-btn" id="btn-cat-electronics" data-category="electronics"><i
class="fas fa-laptop"></i> Tech & Gadgets</button>
<button class="filter-side-btn" id="btn-cat-fashion" data-category="fashion"><i
class="fas fa-tshirt"></i> Fashion</button>
<button class="filter-side-btn" id="btn-cat-home" data-category="home"><i class="fas fa-couch"></i>
Home & Living</button>
<button class="filter-side-btn" id="btn-cat-grocery" data-category="grocery"><i
class="fas fa-apple-alt"></i> Grocery</button>
</div>
</aside>
<!-- Deals Grid Area -->
<main class="deals-main">
<header class="deals-header-left">
<h1>Today's Top Picks</h1>
<p>Curated affiliate deals just for you. Prices update daily!</p>
</header>
<div class="deals-grid" id="dealsGrid">
<!-- Deals will be injected here via JS -->
<div class="loading-deals">
<div class="spinner"></div>
<p>Fetching latest offers...</p>
</div>
</div>
</main>
</div>
</div>
<script src="deals.js"></script>
</body>