-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
260 lines (236 loc) · 10 KB
/
Copy pathindex.html
File metadata and controls
260 lines (236 loc) · 10 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TechNuggets - Developer Knowledge Hub</title>
<meta name="description"
content="Discover, share & accelerate your development journey with bite-sized technical content">
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="styles/components.css">
<link rel="stylesheet" href="styles/responsive.css">
<link rel="stylesheet" href="https://unpkg.com/lucide@latest/dist/lucide.css">
</head>
<body>
<header>
<div class="logo">
<img src="styles/images/logo.png" alt="TechNuggets Logo" class="logo-image">
</div>
<nav class="navbar">
<div class="nav-container">
<ul class="nav-links">
<li><a href="#features-section">Features</a></li>
<li><a href="#about-section">About</a></li>
<li><a href="#contact-section">Contact</a></li>
<li><a href="#blog-section">Blog</a></li>
<li><a href="#login-section">Login</a></li>
</ul>
</div>
<div class="nav-actions">
<button class="btn btn-outline" id="signup-btn">
Sign Up
</button>
</div>
</nav>
</header>
<!-- Toast Container -->
<div id="toast-container" class="toast-container"></div>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<div class="hero-content">
<!-- Badge -->
<div class="badge badge-secondary">
🚀 TechNuggets - Developer Knowledge Hub
</div>
<!-- Main heading -->
<h1 class="hero-title">
Discover, Share & Accelerate
</h1>
<p class="hero-description">
Your go-to platform for bite-sized technical content. Explore quick tips,
code snippets, and concise articles that fuel your development journey.
</p>
<!-- CTA Buttons -->
<div class="hero-actions">
<button class="btn btn-primary btn-lg" onclick="scrollToNuggets()">
<i data-lucide="code"></i>
<br>
Explore Snippets
</button>
<a href="snippet card/snippet.html">
<button class="btn btn-outline btn-lg" id="share-knowledge-btn">
<i data-lucide="lightbulb"></i>
<br>
Share Knowledge
</button>
</a>
</div>
</div>
</div>
</section>
<!-- Feature highlights -->
<section class="features-section" id="features-section">
<div class="features-grid">
<div class="feature">
<div class="feature-icon feature-icon-primary">
<i data-lucide="zap"></i>
</div>
<h3>Lightning Fast</h3>
<p>Quick access to solutions when you need them most</p>
</div>
<div class="feature">
<div class="feature-icon feature-icon-accent">
<i data-lucide="code"></i>
</div>
<h3>Code-Focused</h3>
<p>Practical snippets and real-world examples</p>
</div>
<div class="feature">
<div class="feature-icon feature-icon-success">
<i data-lucide="lightbulb"></i>
</div>
<h3>Community Driven</h3>
<p>Learn from fellow developers worldwide</p>
</div>
</div>
</section>
<!-- Filter Bar -->
<div class="filter-bar sticky-top">
<div class="container">
<!-- Search and Filter Toggle -->
<div class="filter-main">
<div class="search-wrapper">
<i data-lucide="search" class="search-icon"></i>
<input type="text" id="search-input" class="search-input"
placeholder="Search nuggets, languages, or technologies...">
</div>
<button class="btn btn-outline" id="filter-toggle">
<i data-lucide="filter"></i>
Filters
</button>
<button class="btn btn-ghost btn-sm" id="clear-filters" style="display: none;">
<i data-lucide="x"></i>
</button>
</div>
<!-- Active Filters Display -->
<div id="active-filters" class="active-filters" style="display: none;"></div>
<!-- Expandable Filters -->
<div id="filters-panel" class="filters-panel" style="display: none;">
<div class="filter-group">
<h3>Programming Languages</h3>
<div id="language-filters" class="filter-tags"></div>
</div>
<div class="filter-group">
<h3>Categories</h3>
<div id="category-filters" class="filter-tags"></div>
</div>
</div>
</div>
</div>
<!-- Main Content -->
<main class="main-content" id="nuggets-section">
<div class="container">
<!-- Results Header -->
<div class="results-header">
<div>
<h2 id="results-title">Tech Nuggets</h2>
<p id="results-count" class="results-count">Loading nuggets...</p>
</div>
</div>
<!-- Nuggets Grid -->
<div id="nuggets-grid" class="nuggets-grid">
<!-- Loading placeholder -->
<div class="loading-placeholder">
<div class="loading-spinner"></div>
<p>Loading amazing tech nuggets...</p>
</div>
</div>
<!-- No Results -->
<div id="no-results" class="no-results" style="display: none;">
<div class="no-results-icon">🔍</div>
<h3>No nuggets found</h3>
<p>Try searching for different keywords or removing some filters to discover more content.</p>
</div>
</div>
</main>
<!-- Footer -->
<footer class="site-footer">
<div class="container">
<div class="footer-content">
<!-- Logo and Description -->
<div class="footer-section">
<div class="footer-logo">
<h3>TechNuggets</h3>
<p>Empowering developers with bite-sized knowledge for faster growth.</p>
</div>
</div>
<!-- Quick Links -->
<div class="footer-section">
<h4>Quick Links</h4>
<ul class="footer-links">
<li><a href="#nuggets-section">Explore Nuggets</a></li>
<li><a href="#features-section">Features</a></li>
<li><a href="#about-section">About Us</a></li>
<li><a href="#contact-section">Contact</a></li>
</ul>
</div>
<!-- Resources -->
<div class="footer-section">
<h4>Resources</h4>
<ul class="footer-links">
<li><a href="#blog-section">Blog</a></li>
<li><a href="#">Documentation</a></li>
<li><a href="#">Community</a></li>
<li><a href="#">Support</a></li>
</ul>
</div>
<!-- Social Links -->
<div class="footer-section">
<h4>Connect With Us</h4>
<div class="social-links">
<a href="https://github.com/Ashu-10-tech" class="social-link github" target="_blank" rel="noopener noreferrer">
<i data-lucide="github"></i>
<span>GitHub</span>
</a>
<a href="https://www.linkedin.com/in/ashish-negi-79797b374/" class="social-link linkedin" target="_blank" rel="noopener noreferrer">
<i data-lucide="linkedin"></i>
<span>LinkedIn</span>
</a>
<a href="https://www.instagram.com/ashu.negi_10?igsh=NDczZmVtOThlNG5p" class="social-link instagram" target="_blank" rel="noopener noreferrer">
<i data-lucide="instagram"></i>
<span>Instagram</span>
</a>
</div>
</div>
</div>
<!-- Footer Bottom -->
<div class="footer-bottom">
<div class="footer-divider"></div>
<div class="footer-bottom-content">
<p>© 2024 TechNuggets. All rights reserved.</p>
<div class="footer-bottom-links">
<a href="#">Privacy Policy</a>
<a href="#">Terms of Service</a>
<a href="#">Cookie Policy</a>
</div>
</div>
<div class="footer-heart">
<p>Made with <span class="heart">💙</span> for developers worldwide</p>
</div>
</div>
</div>
</footer>
<!-- Scripts -->
<script src="https://unpkg.com/lucide@latest"></script>
<script src="js/data.js"></script>
<script src="js/utils.js"></script>
<script src="js/components.js"></script>
<script src="js/app.js"></script>
<script>
if (window.lucide) {
lucide.createIcons();
}
</script>
</body>
</html>