-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex1.html
More file actions
142 lines (130 loc) Β· 4.72 KB
/
index1.html
File metadata and controls
142 lines (130 loc) Β· 4.72 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NITC Connect - Enhanced Campus Hub</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<!-- MAIN WEBSITE CONTENT -->
<nav>
<div class="logo">NITC Connect</div>
<div class="nav-center">
<div class="search-bar">
<input type="text" placeholder="Search marketplace, events, clubs...">
<span class="search-icon">π</span>
</div>
</div>
<div class="nav-actions">
<button class="icon-btn">
π
<span class="badge">1</span>
</button>
<button class="icon-btn">π¬</button>
<button class="icon-btn">β</button>
<div class="user-avatar">Profile</div>
</div>
</nav>
<section class="hero">
<h1>Welcome to NITC Connect</h1>
<p>Your Complete Campus Ecosystem - Buy, Sell, Connect & Grow</p>
</section>
<section class="quick-access">
<div class="quick-grid">
<div class="quick-card" onclick="loadSection('marketplace')">
<div class="quick-icon">π</div>
<div class="quick-label">Marketplace</div>
</div>
<div class="quick-card" onclick="loadSection('lost-found')">
<div class="quick-icon">π</div>
<div class="quick-label">Lost & Found</div>
</div>
<div class="quick-card" onclick="loadSection('events')">
<div class="quick-icon">π
</div>
<div class="quick-label">Events</div>
</div>
<div class="quick-card" onclick="loadSection('placement')">
<div class="quick-icon">π</div>
<div class="quick-label">Placements</div>
</div>
<div class="quick-card" onclick="loadSection('clubs')">
<div class="quick-icon">π</div>
<div class="quick-label">Clubs</div>
</div>
<div class="quick-card" onclick="loadSection('hostel')">
<div class="quick-icon">π </div>
<div class="quick-label">Hostel</div>
</div>
</div>
</section>
<section class="main-content">
<div class="section-header">
<h2 class="section-title" id="sectionTitle">Trending in Marketplace</h2>
<div class="filter-tabs">
<button class="tab active" onclick="filterItems('all')">All</button>
<button class="tab" onclick="filterItems('books')">Books</button>
<button class="tab" onclick="filterItems('vehicles')">Vehicles</button>
<button class="tab" onclick="filterItems('instruments')">Instruments</button>
</div>
</div>
<div class="cards-grid" id="cardsGrid">
</div>
</section>
<button class="fab" onclick="showAddItemModal()">+</button>
<button class="scroll-top" id="scrollTop" onclick="scrollToTop()">β</button>
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>NITC Connect</h3>
<p style="color: #94A3B8; margin-top: 1rem;">Connecting the NITC community through technology and innovation.</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<div class="footer-links">
<a href="#">About Us</a>
<a href="#">Help Center</a>
<a href="#">Terms of Service</a>
<a href="#">Privacy Policy</a>
</div>
</div>
<div class="footer-section">
<h3>Contact</h3>
<div class="footer-links">
<a href="mailto:support@nitcconnect.edu">support@nitcconnect.edu</a>
<a href="#">Report an Issue</a>
<a href="#">Feedback</a>
</div>
</div>
<div class="footer-section">
<h3>Follow Us</h3>
<div class="footer-links">
<a href="#">Instagram</a>
<a href="#">Facebook</a>
<a href="#">Twitter</a>
<a href="#">LinkedIn</a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 NITC Connect. All rights reserved. Made with β€οΈ for the NITC community.</p>
</div>
</footer>
<script>
function loadSection(section) {
document.getElementById("sectionTitle").innerText = `Trending in ${section.charAt(0).toUpperCase() + section.slice(1)}`;
}
function filterItems(category) {
console.log("Filter by:", category);
}
function showAddItemModal() {
alert("Add item modal coming soon!");
}
function scrollToTop() {
window.scrollTo({ top: 0, behavior: "smooth" });
}
</script>
<script src="js/script.js" defer></script>
</body>
</html>