forked from opensource-society/notesvault
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
86 lines (78 loc) · 3.28 KB
/
about.html
File metadata and controls
86 lines (78 loc) · 3.28 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>About | NotesVault</title>
<link rel="stylesheet" href="about.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<!-- Hero -->
<header class="hero-section">
<h1>About NotesVault</h1>
</header>
<!-- Intro -->
<section class="intro-box container">
<p>
Welcome to NotesVault — Your Smart Academic Companion
In a world of scattered notes, last-minute panic, and unreliable study resources, NotesVault brings you a central, reliable, and organized academic platform built by students, for students. Whether you're looking for quick revision notes, full semester content, or previous year questions — we’ve got it all in one place.
Our goal is to reduce the time you spend searching and increase the time you spend learning. With a clean interface, subject-wise categorization, and community-curated material, we empower students to share, learn, and grow together.
Join the movement to make learning more accessible and efficient for everyone.
</p>
</section>
<!-- Two Cards -->
<section class="two-cards container">
<div class="card">
<h3><i class="fas fa-bullseye"></i> Mission & Vision</h3>
<p>
We aim to simplify academic resources for every student, ensuring equal access to well-organized material.
Our mission is to eliminate academic clutter and create a collaborative ecosystem where students support each other through shared resources.
</p>
</div>
<div class="card">
<h3><i class="fas fa-hand-holding-heart"></i> How We Help</h3>
<p>
From last-minute revision to full-fledged preparation, we reduce the search time so you can focus on learning.
Organized filters, peer-contributed content, and smart UX make us your go-to academic hub.
</p>
</div>
</section>
<!-- Three Cards -->
<section class="features container">
<div class="feature-box">
<h3><i class="fas fa-book"></i> Centralized Notes</h3>
<p>
Access semester-wise notes across subjects in one place. Clear breakdowns, organized format, and community-vetted quality.
</p>
</div>
<div class="feature-box">
<h3><i class="fas fa-search"></i> Smart Search</h3>
<p>
Powerful search with semester, branch, or subject filters so you never waste time again.
</p>
</div>
<div class="feature-box">
<h3><i class="fas fa-users"></i> Community Powered</h3>
<p>
NotesVault thrives on student contributions. Share your notes, help others, and build together.
</p>
</div>
</section>
<!-- GitHub CTA -->
<section class="cta container">
<h3><i class="fab fa-github"></i> Star Our Project on GitHub</h3>
<p>Love NotesVault? Show your support by starring our open-source repo on GitHub.</p>
<p>
Help us grow and build better by joining our contributor community!
</p>
<a href="https://github.com/opensource-society/notesvault" target="_blank">
⭐ Star on GitHub
</a>
</section>
<!-- Footer -->
<footer class="footer">
© 2025 NotesVault. All rights reserved.
</footer>
</body>
</html>