forked from CashBlazorLab/polymarket-trading-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
367 lines (344 loc) · 21.8 KB
/
Copy pathindex.html
File metadata and controls
367 lines (344 loc) · 21.8 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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>InterNova - Find Your Internship</title>
<!-- Tailwind CSS CDN link -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
// Tailwind ki custom colours aur fonts yahi par define kiye hain
tailwind.config = {
theme: {
extend: {
colors: {
'dark-bg': '#0a0a0a',
'card-bg': 'rgba(255, 255, 255, 0.05)',
'brand-purple': '#8B5CF6',
'brand-pink': '#EC4899',
'brand-green': '#22C55E',
'brand-blue': '#3B82F6',
'match-red': '#EF4444',
'match-yellow': '#F59E0B',
'match-green': '#22C55E',
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
},
},
},
};
</script>
<!-- Custom CSS file ko link kiya -->
<link rel="stylesheet" href="style.css">
</head>
<body class="bg-dark-bg text-gray-300 font-sans tracking-tight">
<!-- Header section -->
<header class="bg-card-bg shadow-sm py-4 backdrop-blur-md relative z-20">
<div class="container mx-auto px-4 sm:px-6 lg:px-8 flex items-center justify-between">
<div class="flex items-center space-x-4">
<img src="banner.png" alt="Company Logo" style="height: 50px; width: auto;">
</div>
<div class="flex items-center space-x-2">
<a href="#"
class="hidden sm:inline-block text-white px-4 py-2 rounded-full font-semibold text-sm transition-colors duration-200 border-2 border-brand-pink glow-button">
User Login/Register
</a>
<a href="#"
class="hidden sm:inline-block text-white px-4 py-2 rounded-full font-semibold text-sm transition-colors duration-200 border-2 border-brand-blue glow-button">
Org Login/Register
</a>
<div class="flex items-center bg-gray-800 rounded-full overflow-hidden border border-gray-700 ml-4">
<input type="text" placeholder="Enhanced by Google"
class="py-2 px-4 focus:outline-none text-sm w-48 sm:w-64 bg-transparent text-white placeholder-gray-500">
<button class="bg-brand-purple text-white px-4 py-2 h-full hover:bg-opacity-80 transition-colors">
<svg class="h-5 w-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"></path>
</svg>
</button>
</div>
<button id="hamburger-button" class="hamburger-menu-icon ml-4 relative z-50">
<div class="line line-1 transition-transform duration-300"></div>
<div class="line line-2 transition-opacity duration-300"></div>
<div class="line line-3 transition-transform duration-300"></div>
<div
class="cross absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 opacity-0 transition-opacity duration-300">
<div class="line line-4 rotate-45 transform"></div>
<div class="line line-5 -rotate-45 transform"></div>
</div>
</button>
</div>
</div>
</header>
<!-- Slide-in menu -->
<div id="slide-in-menu" class="slide-in-menu flex flex-col items-start p-8 space-y-6 text-xl">
<a href="#" class="text-white hover:text-brand-purple transition-colors duration-200">About Us</a>
<a href="#" class="text-white hover:text-brand-purple transition-colors duration-200">About Developer</a>
<a href="#" class="text-white hover:text-brand-purple transition-colors duration-200">Testimonials</a>
<a href="#" class="text-white hover:text-brand-purple transition-colors duration-200">Contact</a>
<a href="#" class="text-white hover:text-brand-purple transition-colors duration-200">Privacy Policy</a>
</div>
<!-- Main content area -->
<main class="container mx-auto px-4 py-8">
<div class="text-center mb-8">
<h1 class="text-4xl sm:text-5xl md:text-6xl font-extrabold text-white drop-shadow-lg leading-tight">
<span class="bg-clip-text text-transparent bg-gradient-to-r from-brand-pink to-brand-purple">Unleash
Your Potential</span> ✨
</h1>
<p class="text-gray-400 mt-2 text-lg"> Welcome to the official portal for the Prime Minister's Internship
Scheme. This visionary initiative, a flagship program of the Government of India under the Ministry of
Corporate Affairs, is designed to empower the nation's youth by bridging the crucial gap between
academic knowledge and real-world professional experience. The scheme aims to provide one crore young
individuals with valuable, paid internship opportunities in India's top companies over the next five
years. Through this portal, we strive to create a dynamic and accessible platform for aspiring young
minds to gain practical skills, enhance their employability, and become job-ready for the future. The
Prime Minister's Internship Scheme is a transformative step towards building a skilled and confident
workforce, contributing to the vision of a self-reliant and prosperous India. We encourage all eligible
candidates to explore the diverse opportunities available and embark on a journey of professional growth
and career excellence.</p>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-6">
<div
class="flex flex-col items-center justify-between p-6 bg-card-bg rounded-xl shadow-2xl backdrop-blur-sm card-border-glow transition-transform duration-300 hover:scale-105">
<div class="w-24 h-24 rounded-full overflow-hidden mb-4 border-2 border-brand-purple">
<img src="Meesho.png" alt="Meesho Logo" class="w-full h-full object-cover">
</div>
<div class="text-center mb-4">
<h3 class="text-xl font-bold text-white mb-2">Meesho</h3>
<p class="text-sm text-gray-400">Eligibility: Bachelor's or Master's student in Computer Science.
</p>
</div>
<div class="match-liquid-display">
<div class="match-liquid-percentage">80%</div>
<div class="match-liquid-label">Overall Match</div>
<div class="match-liquid-fill bg-match-yellow" style="height: 80%;"></div>
</div>
<a href="#"
class="mt-auto inline-block bg-brand-purple text-white px-6 py-2 rounded-full font-semibold text-sm transition-colors duration-200 hover:bg-brand-purple/80">
See More
</a>
</div>
<div
class="flex flex-col items-center justify-between p-6 bg-card-bg rounded-xl shadow-2xl backdrop-blur-sm card-border-glow transition-transform duration-300 hover:scale-105">
<div class="w-24 h-24 rounded-full overflow-hidden mb-4 border-2 border-brand-blue">
<img src="zepto.jpg" alt="Zepto Logo" class="w-full h-full object-cover">
</div>
<div class="text-center mb-4">
<h3 class="text-xl font-bold text-white mb-2">Zepto</h3>
<p class="text-sm text-gray-400">Eligibility: Engineering students in their final year.</p>
</div>
<div class="match-liquid-display">
<div class="match-liquid-percentage">95%</div>
<div class="match-liquid-fill bg-match-green" style="height: 95%;"></div>
</div>
<a href="#"
class="mt-auto inline-block bg-brand-blue text-white px-6 py-2 rounded-full font-semibold text-sm transition-colors duration-200 hover:bg-brand-blue/80">
See More
</a>
</div>
<div
class="flex flex-col items-center justify-between p-6 bg-card-bg rounded-xl shadow-2xl backdrop-blur-sm card-border-glow transition-transform duration-300 hover:scale-105">
<div class="w-24 h-24 rounded-full overflow-hidden mb-4 border-2 border-brand-green">
<img src="jambotail.png" alt="Jumbotail Logo" class="w-full h-full object-cover">
</div>
<div class="text-center mb-4">
<h3 class="text-xl font-bold text-white mb-2">Jumbotail</h3>
<p class="text-sm text-gray-400">Eligibility: Any graduate with good analytical skills.</p>
</div>
<div class="match-liquid-display">
<div class="match-liquid-percentage">70%</div>
<div class="match-liquid-fill bg-match-yellow" style="height: 70%;"></div>
</div>
<a href="#"
class="mt-auto inline-block bg-brand-green text-white px-6 py-2 rounded-full font-semibold text-sm transition-colors duration-200 hover:bg-brand-green/80">
See More
</a>
</div>
<div
class="flex flex-col items-center justify-between p-6 bg-card-bg rounded-xl shadow-2xl backdrop-blur-sm card-border-glow transition-transform duration-300 hover:scale-105">
<div class="w-24 h-24 rounded-full overflow-hidden mb-4 border-2 border-brand-pink">
<img src="tcs.jpg" alt="TCS Logo" class="w-full h-full object-cover">
</div>
<div class="text-center mb-4">
<h3 class="text-xl font-bold text-white mb-2">TCS</h3>
<p class="text-sm text-gray-400">Eligibility: B.Tech/M.Tech students from premier institutes.</p>
</div>
<div class="match-liquid-display">
<div class="match-liquid-percentage">85%</div>
<div class="match-liquid-fill bg-match-green" style="height: 85%;"></div>
</div>
<a href="#"
class="mt-auto inline-block bg-brand-pink text-white px-6 py-2 rounded-full font-semibold text-sm transition-colors duration-200 hover:bg-brand-pink/80">
See More
</a>
</div>
<div
class="flex flex-col items-center justify-between p-6 bg-card-bg rounded-xl shadow-2xl backdrop-blur-sm card-border-glow transition-transform duration-300 hover:scale-105">
<div class="w-24 h-24 rounded-full overflow-hidden mb-4 border-2 border-brand-green">
<img src="seekho.png" alt="Seekho Logo" class="w-full h-full object-cover">
</div>
<div class="text-center mb-4">
<h3 class="text-xl font-bold text-white mb-2">Seekho</h3>
<p class="text-sm text-gray-400">Eligibility: Students pursuing BCA or MCA.</p>
</div>
<div class="match-liquid-display">
<div class="match-liquid-percentage">65%</div>
<div class="match-liquid-fill bg-match-yellow" style="height: 65%;"></div>
</div>
<a href="#"
class="mt-auto inline-block bg-brand-green text-white px-6 py-2 rounded-full font-semibold text-sm transition-colors duration-200 hover:bg-brand-green/80">
See More
</a>
</div>
<div
class="flex flex-col items-center justify-between p-6 bg-card-bg rounded-xl shadow-2xl backdrop-blur-sm card-border-glow transition-transform duration-300 hover:scale-105">
<div class="w-24 h-24 rounded-full overflow-hidden mb-4 border-2 border-brand-purple">
<img src="delhivery.jpg" alt="Delhivery Logo" class="w-full h-full object-cover">
</div>
<div class="text-center mb-4">
<h3 class="text-xl font-bold text-white mb-2">Delhivery</h3>
<p class="text-sm text-gray-400">Eligibility: All students with an interest in technology.</p>
</div>
<div class="match-liquid-display">
<div class="match-liquid-percentage">90%</div>
<div class="match-liquid-fill bg-match-green" style="height: 90%;"></div>
</div>
<a href="#"
class="mt-auto inline-block bg-brand-purple text-white px-6 py-2 rounded-full font-semibold text-sm transition-colors duration-200 hover:bg-brand-purple/80">
See More
</a>
</div>
<div
class="flex flex-col items-center justify-between p-6 bg-card-bg rounded-xl shadow-2xl backdrop-blur-sm card-border-glow transition-transform duration-300 hover:scale-105">
<div class="w-24 h-24 rounded-full overflow-hidden mb-4 border-2 border-brand-blue">
<img src="classplus.png" alt="Classplus Logo" class="w-full h-full object-cover">
</div>
<div class="text-center mb-4">
<h3 class="text-xl font-bold text-white mb-2">Classplus</h3>
<p class="text-sm text-gray-400">Eligibility: Currently enrolled students with good coding skills.
</p>
</div>
<div class="match-liquid-display">
<div class="match-liquid-percentage">80%</div>
<div class="match-liquid-fill bg-match-yellow" style="height: 80%;"></div>
</div>
<a href="#"
class="mt-auto inline-block bg-brand-blue text-white px-6 py-2 rounded-full font-semibold text-sm transition-colors duration-200 hover:bg-brand-blue/80">
See More
</a>
</div>
<div
class="flex flex-col items-center justify-between p-6 bg-card-bg rounded-xl shadow-2xl backdrop-blur-sm card-border-glow transition-transform duration-300 hover:scale-105">
<div class="w-24 h-24 rounded-full overflow-hidden mb-4 border-2 border-brand-purple">
<img src="razorpay.webp" alt="Razorpay Logo" class="w-full h-full object-cover">
</div>
<div class="text-center mb-4">
<h3 class="text-xl font-bold text-white mb-2">Razorpay</h3>
<p class="text-sm text-gray-400">Eligibility: Graduate and postgraduate students in tech.</p>
</div>
<div class="match-liquid-display">
<div class="match-liquid-percentage">60%</div>
<div class="match-liquid-fill bg-match-yellow" style="height: 60%;"></div>
</div>
<a href="#"
class="mt-auto inline-block bg-brand-purple text-white px-6 py-2 rounded-full font-semibold text-sm transition-colors duration-200 hover:bg-brand-purple/80">
See More
</a>
</div>
<div
class="flex flex-col items-center justify-between p-6 bg-card-bg rounded-xl shadow-2xl backdrop-blur-sm card-border-glow transition-transform duration-300 hover:scale-105">
<div class="w-24 h-24 rounded-full overflow-hidden mb-4 border-2 border-brand-pink">
<img src="lenskart.webp" alt="Lenskart Logo" class="w-full h-full object-cover">
</div>
<div class="text-center mb-4">
<h3 class="text-xl font-bold text-white mb-2">Lenskart</h3>
<p class="text-sm text-gray-400">Eligibility: All students with a passion for software.</p>
</div>
<div class="match-liquid-display">
<div class="match-liquid-percentage">55%</div>
<div class="match-liquid-fill bg-match-yellow" style="height: 55%;"></div>
</div>
<a href="#"
class="mt-auto inline-block bg-brand-pink text-white px-6 py-2 rounded-full font-semibold text-sm transition-colors duration-200 hover:bg-brand-pink/80">
See More
</a>
</div>
<div
class="flex flex-col items-center justify-between p-6 bg-card-bg rounded-xl shadow-2xl backdrop-blur-sm card-border-glow transition-transform duration-300 hover:scale-105">
<div class="w-24 h-24 rounded-full overflow-hidden mb-4 border-2 border-brand-green">
<img src="swiggy.png" alt="Swiggy Logo" class="w-full h-full object-cover">
</div>
<div class="text-center mb-4">
<h3 class="text-xl font-bold text-white mb-2">Swiggy</h3>
<p class="text-sm text-gray-400">Eligibility: Students with a keen interest in food and technology.
</p>
</div>
<div class="match-liquid-display">
<div class="match-liquid-percentage">92%</div>
<div class="match-liquid-fill bg-match-green" style="height: 92%;"></div>
</div>
<a href="#"
class="mt-auto inline-block bg-brand-green text-white px-6 py-2 rounded-full font-semibold text-sm transition-colors duration-200 hover:bg-brand-green/80">
See More
</a>
</div>
<div
class="flex flex-col items-center justify-between p-6 bg-card-bg rounded-xl shadow-2xl backdrop-blur-sm card-border-glow transition-transform duration-300 hover:scale-105">
<div class="w-24 h-24 rounded-full overflow-hidden mb-4 border-2 border-brand-pink">
<img src="zomato.avif" alt="Zomato Logo" class="w-full h-full object-cover">
</div>
<div class="text-center mb-4">
<h3 class="text-xl font-bold text-white mb-2">Zomato</h3>
<p class="text-sm text-gray-400">Eligibility: Students passionate about product management.</p>
</div>
<div class="match-liquid-display">
<div class="match-liquid-percentage">88%</div>
<div class="match-liquid-fill bg-match-green" style="height: 88%;"></div>
</div>
<a href="#"
class="mt-auto inline-block bg-brand-pink text-white px-6 py-2 rounded-full font-semibold text-sm transition-colors duration-200 hover:bg-brand-pink/80">
See More
</a>
</div>
<div
class="flex flex-col items-center justify-between p-6 bg-card-bg rounded-xl shadow-2xl backdrop-blur-sm card-border-glow transition-transform duration-300 hover:scale-105">
<div class="w-24 h-24 rounded-full overflow-hidden mb-4 border-2 border-brand-blue">
<img src="uber.jpg" alt="Uber Logo" class="w-full h-full object-cover">
</div>
<div class="text-center mb-4">
<h3 class="text-xl font-bold text-white mb-2">Uber</h3>
<p class="text-sm text-gray-400">Eligibility: Engineering students from top universities.</p>
</div>
<div class="match-liquid-display">
<div class="match-liquid-percentage">91%</div>
<div class="match-liquid-fill bg-match-green" style="height: 91%;"></div>
</div>
<a href="#"
class="mt-auto inline-block bg-brand-blue text-white px-6 py-2 rounded-full font-semibold text-sm transition-colors duration-200 hover:bg-brand-blue/80">
See More
</a>
</div>
</div>
<div class="flex justify-center mt-12 space-x-2">
<button
class="bg-brand-purple text-white font-semibold px-4 py-2 rounded-md transition-colors duration-200">1</button>
<button
class="bg-gray-800 text-gray-400 font-semibold px-4 py-2 rounded-md hover:bg-gray-700 transition-colors duration-200">2</button>
<button
class="bg-gray-800 text-gray-400 font-semibold px-4 py-2 rounded-md hover:bg-gray-700 transition-colors duration-200">3</button>
</div>
</main>
<!-- Footer section -->
<footer class="bg-card-bg text-gray-400 py-6 mt-12 backdrop-blur-sm">
<div class="container mx-auto px-4 text-center">
<p>© 2024 InterNova. All rights reserved.</p>
<p class="text-sm mt-2">A demo for an AI-Based Internship Recommendation Engine.</p>
</div>
</footer>
<!-- JavaScript file ko body ke end mein link kiya -->
<script src="script.js" defer></script>
</body>
</html>