-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (78 loc) · 2.6 KB
/
Copy pathindex.html
File metadata and controls
85 lines (78 loc) · 2.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ShopIt</title>
<link rel="stylesheet" href="./styles/styles.css">
<link rel="stylesheet" href="./styles/index.css">
<link href="./images/logo.png" rel="icon">
</head>
<body>
<header>
<div class="logo">
<span><img src="./images/logo.png" alt="user icon" style="height: 2rem; width: 2rem; border-radius: 50%;"></span>
<span style="font-family: 'Times New Roman', Times, serif">ShopIt</span>
</div>
<div class="search-container">
<input type="text" id="search-input" placeholder="Search it and shop it..." style="width: 90%;">
</div>
<div class="account-icon">
<button onclick="window.location.href='./pages/signup.html'">Sell Product</button>
</div>
</header>
<nav class="category-nav">
<button onclick="window.location.href=`./pages/electronics.html`">Electronics</button>
<button onclick="window.location.href=`./pages/households.html`">Household</button>
<button onclick="window.location.href=`./pages/women.html`">Women Wear</button>
<button onclick="window.location.href='./pages/menClothes.html'">Men’s Wear</button>
<button onclick="window.location.href='./pages/others.html'">Others</button>
</nav>
<main>
<div class="grid-container" id="product-grid">
</div>
</main>
<!-- Modal Structure -->
<div id="productModal" class="modal">
<div class="modal-content">
<span class="close-modal">×</span>
<div class="modal-body">
<!-- Product details will be inserted here -->
</div>
</div>
</div>
<div
id="no-items-message"
style="
display: none;
text-align: center;
margin: 20px auto;
padding: 20px;
background-color: #f8f9fa;
border: 1px solid #e0e0e0;
border-radius: 8px;
max-width: 400px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
"
>
<p
style="
font-size: 1.2em;
color: #555;
margin: 0;
font-weight: 500;
"
>
No items found matching your search.
</p>
</div>
<footer style="display: flex; justify-content: center; gap: 20px;">
<div>
<a style="color: #f8f9fa; text-decoration: none;" href="./pages/help.html">Help center</a>
</div>
<p>© 2025 ShopIt. All rights reserved.</p>
</footer>
<script type="module" src="./functionalities/index.js"></script>
<script type="module" src="./config/config.js" defer></script>
</body>
</html>