forked from JiyaBatra/Addminiproject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
88 lines (79 loc) · 3.85 KB
/
about.html
File metadata and controls
88 lines (79 loc) · 3.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About | Add Mini Project</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="3d-effects.css">
</head>
<body>
<header class="home-header">
<div class="home-header-inner">
<a class="home-brand" href="index.html">
<span class="home-brand-icon">🌸</span>
<span class="home-brand-copy">
<span class="home-brand-title">Open Source Mini Projects</span>
<span class="home-brand-tagline">Build. Share. Grow. Together.</span>
</span>
</a>
<button class="home-nav-toggle" type="button" aria-expanded="false" aria-label="Toggle navigation menu" aria-controls="home-nav">
<span></span>
<span></span>
<span></span>
</button>
<nav id="home-nav" class="home-nav" aria-label="Main Navigation">
<a href="index.html">Home</a>
<a class="active" href="about.html">About</a>
<a href="contribute.html">How to Contribute</a>
<a href="mini-project-guidelines/index.html">Guidelines</a>
<a href="contact.html">Contact</a>
<a href="projects.html">Projects</a>
<div class="nav-profile">
<span id="navUsername" class="nav-user"></span>
<button class="logout-btn" onclick="logout()">Logout</button>
</div>
</nav>
</div>
</header>
<main class="about-page">
<section class="about-hero">
<p class="about-eyebrow" data-motion="fade" data-motion-on="load">Community Driven</p>
<h1 data-motion="stagger" data-stagger="letters" data-motion-on="load">About This Project</h1>
<p class="about-intro" data-motion="slide" data-motion-on="load" data-motion-delay="140ms">
Welcome to our open-source hub. This is a community-powered space where beginners, designers, and developers can publish mini projects and learn together.
</p>
</section>
<section class="about-copy">
<p class="card" data-motion="slide" data-motion-on="scroll" data-motion-delay="90ms">
Our goal is to make collaboration simple and fun. Every contribution, big or small, helps others learn, inspires new ideas, and strengthens the community.
</p>
<p class="card" data-motion="fade" data-motion-on="scroll" data-motion-delay="120ms">
Join us, add your mini project, and be part of a growing network of makers and innovators.
</p>
</section>
</main>
<footer class="site-footer">
<div class="site-footer-inner">
<p class="site-footer-title">Open Source Mini Projects</p>
<p class="site-footer-note">Where ideas become mini projects and contributions become growth.</p>
<div class="site-footer-highlights" aria-label="Community highlights">
<span>Open Source</span>
<span>Beginner Friendly</span>
<span>Community Driven</span>
</div>
<p class="site-footer-meta">© <span class="footer-year">2026</span> Open Source Mini Projects 💖</p>
</div>
</footer>
<div class="cursor">
<video src="Assets/butterfly.mp4" autoplay muted loop playsinline aria-hidden="true"></video>
</div>
<div class="sparkle-container"></div>
<script src="auth.js"></script>
<script>
checkAuth();
showLoggedInUser();
</script>
<script src="script.js"></script>
</body>
</html>