-
-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy pathindex.html
More file actions
898 lines (776 loc) · 39.3 KB
/
index.html
File metadata and controls
898 lines (776 loc) · 39.3 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
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
<!DOCTYPE html>
<html lang="en">
<head>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1013609987989002"
crossorigin="anonymous"></script>
<meta name="google-site-verification" content="reqrQf4LQKxC6iKCNOEWrGnQK2Hp3at3upl4EuJr0H8" />
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- SEO Meta Tags -->
<title>Nitra Mitra - Ultimate Academic Platform for NITRA Technical Campus Students | AKTU Resources</title>
<meta name="description" content="Nitra Mitra - Your ultimate platform for academic resources, campus updates, and community connection at NITRA Technical Campus, Ghaziabad. Access comprehensive study materials, CGPA calculator, placement updates, AI tools, games, gallery, and stay connected with campus activities. Designed for AKTU affiliated students.">
<meta name="keywords" content="NITRA Technical Campus, NITRA Ghaziabad, AKTU, academic resources, student platform, CGPA calculator, SGPA calculator, placement updates, campus events, study materials, engineering students, college resources, BTECH resources, assignment tracker, AI summary tool, student marketplace, scholarship updates, performance analytics, ATS score checker">
<meta name="author" content="Vaibhav Babele, Ghanshyam Prajapati">
<meta name="robots" content="index, follow">
<meta name="language" content="English">
<meta name="revisit-after" content="7 days">
<meta name="geo.region" content="IN-UP">
<meta name="geo.placename" content="Ghaziabad, Uttar Pradesh">
<meta name="geo.position" content="28.6692;77.4538">
<meta name="ICBM" content="28.6692, 77.4538">
<link rel="canonical" href="https://nbytes.xyz/">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://nbytes.xyz/">
<meta property="og:title" content="Nitra Mitra - Ultimate Academic Platform for NITRA Technical Campus Students | AKTU Resources">
<meta property="og:description" content="Your ultimate platform for academic resources, campus updates, and community connection at NITRA Technical Campus, Ghaziabad. Access comprehensive study materials, CGPA calculator, placement updates, AI tools, games, gallery, and stay connected with campus activities. Designed for AKTU affiliated students.">
<meta property="og:image" content="https://nbytes.xyz/og-image.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="Nitra Mitra - NITRA Technical Campus Academic Platform">
<meta property="og:site_name" content="Nitra Mitra">
<meta property="og:locale" content="en_US">
<meta property="og:locale:alternate" content="hi_IN">
<meta property="article:author" content="Vaibhav Babele, Ghanshyam Prajapati">
<meta property="article:publisher" content="Nitra Mitra">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://nbytes.xyz/">
<meta property="twitter:title" content="Nitra Mitra - Ultimate Academic Platform for NITRA Technical Campus Students | AKTU Resources">
<meta property="twitter:description" content="Your ultimate platform for academic resources, campus updates, and community connection at NITRA Technical Campus, Ghaziabad. Access comprehensive study materials, CGPA calculator, placement updates, AI tools, games, gallery, and stay connected with campus activities. Designed for AKTU affiliated students.">
<meta property="twitter:image" content="https://nbytes.xyz/og-image.png">
<meta property="twitter:image:alt" content="Nitra Mitra - NITRA Technical Campus Academic Platform">
<meta property="twitter:site" content="@nitramitra">
<meta property="twitter:creator" content="@vaibhavbabele">
<!-- Additional Meta Tags -->
<meta name="theme-color" content="#4f46e5">
<meta name="msapplication-TileColor" content="#4f46e5">
<meta name="application-name" content="Nitra Mitra">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="apple-mobile-web-app-title" content="Nitra Mitra">
<meta name="format-detection" content="telephone=no">
<meta name="mobile-web-app-capable" content="yes">
<meta name="msapplication-tap-highlight" content="no">
<!-- Educational Institution Meta Tags -->
<meta name="institution" content="NITRA Technical Campus, Ghaziabad">
<meta name="university" content="Dr. A.P.J. Abdul Kalam Technical University (AKTU)">
<meta name="campus" content="NITRA Technical Campus">
<meta name="location" content="Ghaziabad, Uttar Pradesh, India">
<!-- Academic Keywords -->
<meta name="subject" content="Engineering, Technology, Computer Science, BTECH">
<meta name="audience" content="Engineering Students, BTECH Students, AKTU Students">
<meta name="classification" content="Educational Platform, Student Resources, Academic Tools">
<!-- Schema.org markup for Google -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "EducationalOrganization",
"name": "Nitra Mitra",
"alternateName": "NITRA Technical Campus Student Platform",
"description": "Ultimate academic platform for NITRA Technical Campus students providing comprehensive resources, tools, and campus updates. Designed for AKTU affiliated students with CGPA calculator, placement updates, AI tools, games, gallery, and community features.",
"url": "https://nbytes.xyz/",
"logo": "https://nbytes.xyz/favicon/android-chrome-192x192.png",
"image": "https://nbytes.xyz/og-image.png",
"foundingDate": "2024",
"founder": [
{
"@type": "Person",
"name": "Vaibhav Babele"
},
{
"@type": "Person",
"name": "Ghanshyam Prajapati"
}
],
"address": {
"@type": "PostalAddress",
"addressLocality": "Ghaziabad",
"addressRegion": "Uttar Pradesh",
"addressCountry": "IN"
},
"sameAs": [
"https://www.linkedin.com/in/vaibhavbabele",
"https://github.com/vaibhavbabele"
],
"contactPoint": {
"@type": "ContactPoint",
"contactType": "Customer Service",
"email": "nitramitra@gmail.com"
},
"offers": [
{
"@type": "Offer",
"name": "Academic Resources",
"description": "Comprehensive study materials, notes, and previous semester papers"
},
{
"@type": "Offer",
"name": "CGPA/SGPA Calculator",
"description": "Calculate semester SGPA and overall CGPA"
},
{
"@type": "Offer",
"name": "Placement Updates",
"description": "Stay updated with company drives, interviews, and shortlists"
},
{
"@type": "Offer",
"name": "AI-Powered Tools",
"description": "Student Assistant chatbot and AI Summary Tool"
}
]
}
</script>
<script>
// Apply theme immediately to prevent flash of unstyled content
(function() {
const isDark = localStorage.getItem('mode') === 'true';
if (isDark) {
document.documentElement.classList.add('dark-mode');
document.body.classList.add('dark-mode');
}
document.documentElement.classList.add('theme-loaded');
})();
</script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css">
<!-- Typography System - Load first for font consistency -->
<link rel="stylesheet" href="css/typography.css">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="./css/team-styles.css">
<link rel="stylesheet" href="pages/summary/summary.css">
<link rel="stylesheet" href="pages/assistant/assistant.css">
<link rel="stylesheet" href="pages/cursor.css">
<!-- Floating Sidebar CSS -->
<link rel="stylesheet" href="css/floating-sidebar.css">
<!-- Footer CSS -->
<link rel="stylesheet" href="./css/footer.css">
<!-- scroll -->
<link rel="stylesheet" href="./css/scroll-indicator.css">
<!-- Enhanced Favicon System -->
<!-- Standard favicon -->
<link rel="icon" href="favicon/favicon.ico" sizes="16x16 32x32">
<!-- PNG favicons for different sizes -->
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<!-- SVG favicon for modern browsers -->
<link rel="icon" type="image/svg+xml" href="favicon/favicon.ico">
<!-- Apple Touch Icon -->
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<!-- Android Chrome icons -->
<link rel="icon" type="image/png" sizes="192x192" href="favicon/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="384x384" href="favicon/android-chrome-384x384.png">
<!-- Safari Pinned Tab -->
<link rel="mask-icon" href="favicon/safari-pinned-tab.svg" color="#4f46e5">
<!-- Web App Manifest -->
<link rel="manifest" href="favicon/site.webmanifest">
<!-- Microsoft Tile -->
<meta name="msapplication-TileImage" content="favicon/mstile-150x150.png">
<meta name="msapplication-TileColor" content="#4f46e5">
<meta name="msapplication-config" content="favicon/browserconfig.xml">
<!-- Theme color variations -->
<meta name="theme-color" content="#4f46e5" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#1f2937" media="(prefers-color-scheme: dark)">
<link href="https://cdn.jsdelivr.net/npm/remixicon@4.5.0/fonts/remixicon.css" rel="stylesheet" />
<!-- Floating Sidebar JS -->
<script src="js/sidebar.js"></script>
<!-- Favicon Manager for Theme-Aware Icons -->
<script src="js/favicon-manager.js"></script>
<!-- footer -->
<script src="./js/footer.js"></script>
<link rel="stylesheet" href="./css/team-styles.css">
<script src="./js/team-script.js"></script>
</head>
<body id="onload">
<!-- NAVBAR DESIGNING -->
<nav>
<div class="nav-first">
<button onclick="goBack()" class="back-button">
<i class="fas fa-arrow-left"></i>
</button>
<div class="logo"><a href="https://www.nitra.ac.in/">NITra <span id="mitra">MITra</span></a></div>
</div>
<div class="nav-end">
<!-- Authentication Buttons -->
<div class="auth-buttons">
<button id="loginBtn" class="auth-btn login-btn" onclick="showLoginModal()">
<i class="fas fa-sign-in-alt"></i>
Login
</button>
<button id="signupBtn" class="auth-btn signup-btn" onclick="showSignupModal()">
<i class="fas fa-user-plus"></i>
Sign Up
</button>
<!-- User Menu (hidden by default) -->
<div id="userMenu" class="user-menu" style="display: none;">
<div class="user-info">
<i class="fas fa-user-circle"></i>
<span id="userEmail">user@example.com</span>
</div>
<div class="user-dropdown">
<button class="dropdown-item" onclick="goToDashboard()">
<i class="fas fa-tachometer-alt"></i>
Dashboard
</button>
<button class="dropdown-item" onclick="goToProfile()">
<i class="fas fa-user"></i>
Profile
</button>
<button class="dropdown-item" onclick="logout()">
<i class="fas fa-sign-out-alt"></i>
Logout
</button>
</div>
</div>
</div>
<button id="lang-toggle">
हिंदी
</button>
<img src="images/moon.png" id="mode" alt="Toggle dark mode" title="Toggle between light and dark mode" role="button" tabindex="0" aria-label="Toggle dark mode">
</div>
</nav>
<!-- Scroll Progress Indicator just under the navbar -->
<div class="scroll-progress-container">
<div class="scroll-progress-bar"></div>
</div>
<div class="main">
<section id="Home">
<div class="container flex main-page">
<div class="header-left">
<h1 class="greeting">Welcome to Nitra Mitra</h1>
<p class="hero-subtext">Your ultimate platform for academic resources, campus updates, and
community
connection at NITRA Technical Campus.</p>
<!-- Daily Motivation Quote Box -->
<div id="daily-quote" class="quote-box">
<h3 class="quote-title">✨ Today's Motivation ✨</h3>
<p id="quote-text"></p>
</div>
<a href="#Services" class="primary-button get-started-btn">My Services</a>
</div>
<div class="header-right">
<img src="images/student.png" alt="student image">
</div>
</div>
</section>
<!-- SERVICE DESIGNING -->
<section class="service" id="Services">
<h1 class="service-heading">Services</h1>
<p class="para">Welcome to <span>Nitra Mitra</span>, your <b>ultimate platform</b> for <span>NITRA
Technical
Campus</span>, Ghaziabad. We offer a <b>comprehensive suite of resources</b>, from academic
materials to
event updates, designed to <b>enhance your learning experience</b>. Explore our <b>latest
features,
download
exclusive content</b>, and <b>stay connected with campus activities</b>. Don't miss out on
valuable
resources—download or view them directly on <span>Nitra Mitra</span> today! We value your
feedback;
please fill
out our <a href="#Feedback">feedback form</a> to help us improve and serve you better. Visit
<span>Nitra
Mitra</span> now!
</p>
<p class="para call-to-action-line">Browse our comprehensive offerings below:</p>
<div class="container1">
<div class="card">
<i class="ri-book-open-line"></i>
<img src="images/resorce.jpg" class="card-img-top"
alt="Illustration representing academic resources">
<div class="card-body">
<h4 class="card-title">Resources</h4>
<p class="card-text"><b>Get all resources for BTECH Students.</b></p>
<a href="pages/resorces.html" class="primary-button" id="btn">Open </a>
</div>
</div>
<div class="card">
<i class="ri-gamepad-line"></i>
<img src="images/meeting.webp" class="card-img-top" alt="Game section">
<div class="card-body">
<h4 class="card-title">Games</h4>
<p class="card-text"><b>Multiple games plays.</b></p>
<a href="games/gamess.html" class="primary-button" id="btn">Play Now</a>
</div>
</div>
<div class="card">
<i class="ri-camera-line"></i>
<img src="images/gall.jpg" class="card-img-top" alt="gallery">
<div class="card-body">
<h4 class="card-title">Gallery</h4>
<p class="card-text"><b>View all events memories here.</b></p>
<a href="pages/gallery.html" class="primary-button" id="btn">Open</a>
</div>
</div>
<div class="card" style="width: 25%;">
<i class="ri-building-4-line"></i>
<img src="images/5121453.jpg" class="card-img-top" alt="infrastructure">
<div class="card-body">
<h4 class="card-title">Infrastructure</h4>
<p class="card-text"><b>View all events memories here.</b></p>
<a href="pages/infrastructure.html" class="primary-button" id="btn">Open</a>
</div>
</div>
<div class="card" style="width: 25%;">
<i class="ri-calculator-line"></i>
<img src="images/undraw_calculator_21hp.png" class="card-img-top" alt="CGPA Calculator">
<div class="card-body">
<h4 class="card-title">CGPA/SGPA Calculator</h4>
<p class="card-text"><b>Calculate your semester SGPA & overall CGPA.</b></p>
<a href="pages/cgpa-calculator.html" class="primary-button" id="btn">Calculate Now</a>
</div>
</div>
<div class="card" style="width: 25%;">
<i class="ri-arrow-right-up-line"></i>
<img src="images/undraw_developer.png" class="card-img-top" alt="Placement Updates">
<div class="card-body">
<h4 class="card-title">Placement Cell Updates</h4>
<p class="card-text"><b>Stay updated with company drives, interviews, and shortlists.</b>
</p>
<a href="pages/placement-updates.html" class="primary-button" id="btn">View Updates</a>
</div>
</div>
<div class="card">
<i class="ri-chat-1-line"></i>
<img src="https://aisera.com/wp-content/uploads/2020/06/AI-Virtual-Assistant-1024x538.jpg"
class="card-img-top" alt="student assistant">
<div class="card-body">
<h4 class="card-title">Student Assistant</h4>
<p class="card-text"><b>AI-powered chatbot for academic help.</b></p>
<a href="pages/assistant/assistant.html" class="primary-button" id="btn">Chat Now</a>
</div>
</div>
<div class="card" id="card">
<i class="ri-task-line"></i>
<img src="images/undraw_calculator_21hp.png" class="card-img-top" alt="Assignment Tracker">
<div class="card-body">
<h4 class="card-title">Assignment Tracker</h4>
<p class="card-text"><b>Never miss a deadline! Track assignments, manage deadlines, and stay organized.</b></p>
<a href="pages/assignment-tracker.html" class="primary-button" id="btn">Track Now</a>
</div>
</div>
<div class="card" id="card">
<i class="ri-sticky-note-line"></i>
<img src="images/qna.webp" class="card-img-top" alt="ai summary tool">
<div class="card-body">
<h4 class="card-title">AI Summary Tool</h4>
<p class="card-text"><b>Smart text & file summarization with notes enhancement.</b></p>
<a href="pages/summary/summary.html" class="primary-button" id="btn">Summarize Now</a>
</div>
</div>
<div class="card" id="card">
<i class="ri-graduation-cap-line"></i>
<img src="images/syllabus.avif" class="card-img-top" alt="Syllabus">
<div class="card-body">
<h4 class="card-title">Syllabus</h4>
<p class="card-text"><b>Access the latest syllabus for your courses.</b></p>
<a href="pages/syllabus/syllabus.html" class="primary-button" id="btn">View Syllabus</a>
</div>
</div>
<div class="card" id="card">
<i class="ri-file-list-3-line"></i>
<img src="images/res.avif" class="card-img-top" alt="ATS Score Checker">
<div class="card-body">
<h4 class="card-title">ATS Score Checker</h4>
<p class="card-text"><b>Upload your resume and get an ATS compatibility score with keyword
insights and tips.</b></p>
<a href="pages/ats-score-checker/ats-score-checker.html" class="primary-button" id="btn">Check
Now</a>
</div>
</div>
<div class="card" id="card">
<i class="ri-bar-chart-line"></i>
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=400&h=300&fit=crop" class="card-img-top" alt="Performance Analytics">
<div class="card-body">
<h4 class="card-title">Performance Analytics</h4>
<p class="card-text"><b>Track your academic progress with detailed analytics, grade trends, attendance tracking, and personalized insights.</b></p>
<a href="pages/performance-analytics.html" class="primary-button" id="btn">View Analytics</a>
</div>
</div>
<div class="card" id="card">
<i class="ri-store-line"></i>
<img src="pages/image/Marketplace.png" class="card-img-top" alt="Student Marketplace">
<div class="card-body">
<h4 class="card-title">Student Marketplace</h4>
<p class="card-text"><b>Join the student community and access a platform made for sharing and trading items easily and securely.
</b></p>
<a href="pages/product-list.html" class="primary-button" id="btn">Open Marketplace
</a>
</div>
</div>
<div class="card" id="card">
<i class="ri-store-line"></i>
<img src="pages/Logo-image/image.png" class="card-img-top" alt="Scholarship Updates">
<div class="card-body">
<h4 class="card-title">Scholarship Updates</h4>
<p class="card-text"><b>Discover top scholarships and apply before the deadlines to boost your future.
</b></p>
<a href="pages/scholarship.html" class="primary-button" id="btn">Open scholarships
</a>
</div>
</div>
</div>
</section>
<section>
<h1 class="service-heading" id="announcement-heading">Announcement Section</h1>
<style>
@media (max-width: 600px) {
#announcement-heading {
font-size: 1.9em;
font-weight: bold;
}
}
</style>
<p class="para">Your essential hub for all campus updates from <span>Nitra Technical Campus</span>!
The
<span>Announcement Section on Nitra Mitra</span> features key information to keep you fully
informed,
such as:
</p>
<div class="information">
<div class="info1">
<p><b>Upcoming Events & Academic Deadlines:</b> Stay on top of all academic deadlines and
exciting
campus events.
</p>
</div>
<div class="info2">
<p><b>Examination Schedules & Important Notices:</b> Get timely updates on exams, circulars,
and
crucial
announcements.</p>
</div>
<div class="info3">
<p><b>Campus Activities & Cultural Events:</b> Discover and participate in various clubs,
societies,
and cultural
celebrations.</p>
</div>
<div class="info4">
<p><b>Sports Competitions & Student Achievements:</b> Follow inter-college sports action and
celebrate
the
accomplishments of your peers.</p>
</div>
</div>
</section>
<section class="user-experience">
<h1 class="service-heading">User Experience</h1>
<p class="user-para">The user experience on our platform has been overwhelmingly positive, with praise
for:</p>
<ul>
<li><b>Ease of Use & Comprehensive Resources:</b> Seamless access to <span>materials, including
notes,
announcements, and event updates</span>.</li>
<li><b>Intuitive Layout:</b> Easily find important information, from academic resources to
campus
activities.</li>
<li><b>One-Stop Platform:</b> Users have highlighted how <span>Nitra Mitra</span> serves as a
one-stop
platform that
enhances their college experience by keeping them informed and connected.</li>
<li><b>Mobile-Friendly Design:</b> Access resources anytime, anywhere.</li>
</ul>
</section>
<!-- ABOUT DESIGNING --> <!--Shifted the About section-->
<section class="about about-section-landing " id="about">
<h1 class="service-heading">About us</h1>
<h2>Our Mission</h2>
<p class="para">
At <span>Nitra Mitra</span>, our core mission is to empower students of <span>NITRA Technical
Campus</span> and
<span>AKTU</span> by transforming their academic journey. We strive to be the ultimate,
user-friendly
platform
that simplifies access to a comprehensive suite of essential resources, from meticulously
compiled notes
and
previous semester question papers to timely event updates and career guidance. Our goal is to
equip
every
student with the tools they need to excel, making their college experience smoother and more
successful.
</p>
<h2>Who We Are</h2>
<p class="para">
<span>Nitra Mitra</span> is more than just a platform; it's a student-driven initiative born
from a deep
understanding of academic challenges. We are a collaborative community focused on simplifying
college
life
through innovative solutions and relevant content, built with a strong emphasis on user-friendly
design
and
accessibility.
It is proudly developed by <span>Vaibhav Babele</span> and <span>Ghanshyam Prajapati</span>,
dedicated
students
of <span>NITRA Technical Campus</span>. Their vision and hard work have been instrumental in
tailoring
<span>Nitra Mitra</span> to meet the specific needs of students, ensuring it provides tangible
academic
value.
</p>
<h2>Our Commitment</h2>
<p class="para">
At <span>Nitra Mitra</span>, our dedication extends beyond just providing resources; we are
deeply
committed to
the continuous enhancement of this platform. We pledge to tirelessly work towards serving the
academic
community
of <span>NITRA Technical Campus</span>, striving to evolve and adapt to student needs. Our
commitment is
to
consistently deliver updated, relevant content and innovative features that empower students
with the
essential
tools required to excel in their studies and thrive in their educational journey. Your success
is our
driving
force.
</p>
<h2 class="aktu-definition-heading">About AKTU</h2>
<p class="para aktu-definition-paragraph"> Dr. A.P.J. Abdul Kalam Technical University (AKTU) stands
as a
prominent
public collegiate university located in Uttar Pradesh, India. It serves as a major affiliating
body for
numerous
engineering, technology, and management colleges across the state. <span>Nitra Mitra</span> is
specifically
designed to cater to the academic and informational needs of students who are affiliated with
AKTU,
providing
tailored resources and updates to support their educational journey.
</p>
<div class="visitor-card">
<div class="visitor-title">Total Visitors</div>
<div class="visitor-value">
<script type="text/javascript"></script>
<script type="text/javascript"
src="https://www.freevisitorcounters.com/en/home/counter/1204905/t/13"></script>
</div>
</div>
</div>
</section>
<!-- TEAM SECTION (Before Footer) -->
<div id="team-section"></div>
<!-- <section class="team-showcase">
<div class="container">
<div class="section-header">
<h2>Meet Our Team
</h2>
<p>
Dedicated developers working together to create the best educational platform for NITRA
students.
</p>
</div>
<div class="team-grid">
<!-- Vaibhav Babele Card -->
<!-- <div class="team-showcase-card">
<div class="team-avatar">
<img src="images/vaibhav.jpg" alt="Vaibhav Babele">
</div>
<h3>Vaibhav
Babele</h3>
<p>
Lead Developer & Founder</p>
<p>
Computer Science Engineering student passionate about creating educational platforms
for
students.
</p>
<div class="social-links">
<a href="https://www.linkedin.com/in/vaibhavbabele" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://github.com/vaibhavbabele" target="_blank">
<i class="fab fa-github"></i>
</a>
</div>
</div> -->
<!-- Ghanshyam Prajapati Card -->
<!-- <div class="team-showcase-card">
<div class="team-avatar">
<img src="images/ghanshyam.jpeg" alt="Ghanshyam Prajapati">
</div>
<h3>Ghanshyam
Prajapati</h3>
<p>
Co-Developer</p>
<p>
Dedicated developer contributing to the platform's growth and student experience
enhancement.
</p>
<div class="social-links">
<a href="https://www.linkedin.com/in/ghanshyam-prajapati-ab5710266/?originalSubdomain=in"
target="_blank">
<i class="fab fa-linkedin"></i>
</a>
</div>
</div> -->
<!-- Development Team Card -->
<!-- <div class="team-showcase-card">
<div class="team-avatar placeholder">
<i class="fas fa-users"></i>
</div>
<h3>
Development Team</h3>
<p>
Contributors & Maintainers</p>
<p style="color: var(--secondary-text-color); line-height: 1.6; margin-bottom: 25px;">
A growing community of student developers working together to improve the platform.
</p>
<div class="social-links">
<a href="pages/pr-contribution/pr-contributors.html">
<i class="fas fa-users"></i>
</a>
</div>
</div> -->
</div>
</div>
</section> -->
<!-- CONTACT DESIGNING -->
<!-- CONTACT DESIGNING -->
<!-- <section class="contact-section">
<div class="container">
<h1 class="contact-heading">Contact Us</h1>
<div class="contact-grid">
<div class="contact-item">
<a href="https://wa.me/919999999999" target="_blank" class="contact-link">
<i class="fab fa-whatsapp"></i>
<span>Whatsapp Community</span>
<p>Nitra Mitra</p>
</a>
</div> -->
<!-- <div class="contact-grid">
<div class="contact-item">
<a href="https://wa.me/919999999999" target="_blank" class="contact-link">
<i class="fab fa-whatsapp"></i>
<span>Whatsapp Community</span>
<p>Nitra Mitra</p>
</a>
</div> -->
<!--
<div class="contact-item">
<a href="mailto:nitramitra@gmail.com" class="contact-link">
<i class="fas fa-envelope"></i>
<span>Email</span>
<p>nitramitra@gmail.com</p>
</a>
</div>
<div class="contact-item">
<a href="mailto:nitramitra@gmail.com" class="contact-link">
<i class="fas fa-envelope"></i>
<span>Email</span>
<p>nitramitra@gmail.com</p>
</a>
</div>
<div class="contact-item">
<a href="https://www.google.com/maps?q=Sanjay+Nagar,+Ghaziabad" target="_blank"
class="contact-link">
<i class="fas fa-map-marker-alt"></i>
<span>Address</span>
<p>Sanjay Nagar, Ghaziabad, India</p>
</a>
</div> -->
<!-- </div> -->
<!-- <div class="contact-item">
<a href="https://www.google.com/maps?q=Sanjay+Nagar,+Ghaziabad" target="_blank"
class="contact-link">
<i class="fas fa-map-marker-alt"></i>
<span>Address</span>
<p>Sanjay Nagar, Ghaziabad, India</p>
</a>
</div> -->
<!-- </div> -->
<!-- </div>
</section> -->
<!-- <footer class="footer-section">
<div class="container">
<div class="footer-links">
<a href="pages/privacy.html">Privacy Policy</a> |
<a href="pages/terms.html">Terms & Conditions</a> |
<a href="pages/contact.html">Contact</a> |
<a href="pages/pr-contribution/pr-contributors.html">Contributors</a>
</div>
<div class="social-media">
<a href="https://youtube.com/@my.vlog_spot" target="_blank"><i class="fab fa-youtube"></i></a>
<a href="https://www.linkedin.com/in/vaibhavbabele" target="_blank"><i
class="fab fa-linkedin"></i></a>
<a href="https://www.instagram.com/my_vlog.spot/" target="_blank"><i
class="fab fa-instagram"></i></a>
<a href="#" title="Twitter"><i class="fab fa-twitter"></i></a>
</div>
<p class="copyright">
© <span id="year"></span> 2025 Nitra Mitra. All Rights Reserved.
</p>
</div>
</footer> -->
</div>
<!-- WEBSITE DESIGNING END -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://unpkg.com/typed.js@2.1.0/dist/typed.umd.js"></script>
<script>
var Typed = new Typed(".greeting", {
strings: ["Hello!! Students"],
typeSpeed: 150,
backspeed: 150,
loop: false,
showCursor: false
})
</script>
<!-- Google Translate -->
<div id="google_translate_element" style="display:none;"></div>
<script src="language.js"></script>
<!-- scroll -->
<script src="./js/scroll-indicator.js"></script>
<script type="module" src="./js/firebase-config.js"></script>
<script src="index.js"></script>
<!-- Authentication Functions -->
<script>
// Authentication modal functions
function showLoginModal() {
window.location.href = 'pages/auth.html?tab=login';
}
function showSignupModal() {
window.location.href = 'pages/auth.html?tab=signup';
}
// User menu functions
function goToDashboard() {
if (window.utils && window.utils.requireAuth()) {
window.location.href = 'pages/dashboard.html';
}
}
function goToProfile() {
if (window.utils && window.utils.requireAuth()) {
window.location.href = 'pages/profile.html';
}
}
async function logout() {
if (window.authFunctions) {
const result = await window.authFunctions.signOut();
if (result.success) {
window.utils.showNotification('Logged out successfully!', 'success');
// Reload page to update UI
setTimeout(() => {
window.location.reload();
}, 1000);
} else {
window.utils.showNotification('Logout failed. Please try again.', 'error');
}
}
}
// Check for auth tab parameter
document.addEventListener('DOMContentLoaded', function() {
const urlParams = new URLSearchParams(window.location.search);
const tab = urlParams.get('tab');
if (tab === 'login' || tab === 'signup') {
window.location.href = `pages/auth.html?tab=${tab}`;
}
});
</script>
</body>
</html>