-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathabout.html
More file actions
343 lines (312 loc) · 17 KB
/
about.html
File metadata and controls
343 lines (312 loc) · 17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About BYAMN - YouTube Learning Verified Certificate Achievement Platform</title>
<meta name="description"
content="Discover BYAMN's mission to transform YouTube learning into verified achievement. Free certificates, progress tracking, and 200+ expert-led courses for career advancement.">
<link rel="icon" type="image/png" href="./logo.png">
<!-- Tailwind CSS CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Inter font -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<!-- Custom styles -->
<link rel="stylesheet" href="assets/css/styles.css">
<!-- AOS (Animate On Scroll) -->
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<!-- Firebase SDK - Using compat versions without type="module" -->
<script src="https://www.gstatic.com/firebasejs/10.7.1/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.7.1/firebase-analytics-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.7.1/firebase-auth-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.7.1/firebase-firestore-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.7.1/firebase-database-compat.js"></script>
</head>
<body class="min-h-screen bg-gradient-to-br from-neutral-50 to-neutral-100">
<!-- Header -->
<header data-aos-duration="800" class="bg-white/90 backdrop-blur-sm shadow-sm sticky top-0 z-50">
<div data-aos="fade-down" class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center py-4">
<!-- Logo and site name -->
<a href="about.html" class="flex items-center cursor-pointer">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center h-10 w-10">
<img src="logo.png" alt="BYAMN Logo" class="h-full w-full object-contain">
</div>
<h1
class="ml-3 font-bold bg-gradient-to-r from-indigo-600 to-purple-600 bg-clip-text text-transparent text-2xl">
BYAMN
</h1>
</div>
</a>
<!-- Desktop Navigation - hidden on mobile and tablets -->
<nav class="hidden lg:flex space-x-1">
<a href="index.html"
class="px-3 py-2 rounded-lg text-neutral-600 hover:text-primary-600 font-medium transition-colors duration-300">Home</a>
<a href="courses.html"
class="px-3 py-2 rounded-lg text-neutral-600 hover:text-primary-600 font-medium transition-colors duration-300">Courses</a>
<a href="about.html"
class="px-3 py-2 rounded-lg text-neutral-600 hover:text-primary-600 font-medium transition-colors duration-300">About</a>
<a href="faq.html"
class="px-3 py-2 rounded-lg text-neutral-600 hover:text-primary-600 font-medium transition-colors duration-300">FAQ</a>
<a href="contact.html"
class="px-3 py-2 rounded-lg text-neutral-600 hover:text-primary-600 font-medium transition-colors duration-300">Contact</a>
</nav>
<!-- User Actions Section -->
<div class="flex items-center space-x-3">
<!-- Mobile menu button - visible on mobile and tablets -->
<button id="mobile-menu-button"
class="lg:hidden p-2 rounded-lg bg-neutral-100 text-neutral-700 hover:bg-neutral-200 transition-colors"
aria-label="Toggle menu">
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
<!-- User-specific actions - shown only on large screens -->
<div id="user-actions-desktop" class="hidden lg:flex items-center space-x-3">
<a href="auth/login.html" id="login-btn" class="btn btn-outline">Login</a>
<a href="auth/register.html" id="signup-btn" class="btn btn-primary">Get Started</a>
</div>
</div>
</div>
<!-- Mobile Navigation - only visible when menu is open -->
<div id="mobile-menu" class="lg:hidden py-4 border-t border-neutral-200 hidden">
<div class="flex flex-col space-y-3">
<a href="index.html"
class="px-3 py-2 rounded-lg text-neutral-600 hover:text-primary-600 font-medium transition-colors">Home</a>
<a href="courses.html"
class="px-3 py-2 rounded-lg text-neutral-600 hover:text-primary-600 font-medium transition-colors">Courses</a>
<a href="about.html"
class="px-3 py-2 rounded-lg text-neutral-600 hover:text-primary-600 font-medium transition-colors">About</a>
<a href="faq.html"
class="px-3 py-2 rounded-lg text-neutral-600 hover:text-primary-600 font-medium transition-colors">FAQ</a>
<a href="contact.html"
class="px-3 py-2 rounded-lg text-neutral-600 hover:text-primary-600 font-medium transition-colors">Contact</a>
<!-- Mobile user actions -->
<div id="user-actions-mobile" class="pt-4 border-t border-neutral-200 space-y-3">
<a href="auth/login.html" id="login-btn" class="block w-full text-center btn btn-outline">Login</a>
<a href="auth/register.html" id="signup-btn" class="block w-full text-center btn btn-primary">Get
Started</a>
</div>
</div>
</div>
</div>
</header>
<!-- Main Content -->
<main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-16">
<div data-aos="fade-in" class="text-center mb-16">
<h1 class="text-4xl md:text-5xl font-bold text-gray-900 mb-6">About BYAMN</h1>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Transforming the way people learn by turning YouTube content into structured, trackable courses with verified
certificates.
</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center mb-16">
<div data-aos="fade-right">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Our Mission</h2>
<p class="text-gray-600 mb-6">
At BYAMN, we believe that high-quality educational content should be accessible to everyone, regardless of
their financial situation. Our platform transforms freely available for everyone YouTube content into
structured learning paths, making education more accessible and affordable.
</p>
<p class="text-gray-600 mb-6">
We're on a mission to democratize education by providing free certificates for completed courses, progress
tracking, and a structured learning environment that helps learners stay motivated and achieve their goals.
</p>
<div class="flex flex-wrap gap-4 mt-8">
<div class="flex items-center">
<div class="flex-shrink-0 h-12 w-12 rounded-full bg-indigo-100 flex items-center justify-center">
<svg class="h-6 w-6 text-indigo-600" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">100% Free Certificates</h3>
<p class="text-gray-600">No hidden fees or subscriptions</p>
</div>
</div>
<div class="flex items-center">
<div class="flex-shrink-0 h-12 w-12 rounded-full bg-indigo-100/30 flex items-center justify-center">
<svg class="h-6 w-6 text-indigo-600" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900">Progress Tracking</h3>
<p class="text-gray-600">Monitor your learning journey</p>
</div>
</div>
</div>
</div>
<div data-aos="fade-left"
class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-96 flex items-center justify-center">
<img src="./assets/mission-image.png" alt="Our Mission" class="w-full h-full object-cover rounded-xl">
</div>
</div>
<div class="bg-white rounded-2xl shadow-lg p-8 mb-16">
<h2 data-aos="fade-in" class="text-3xl font-bold text-gray-900 mb-6 text-center">How It Works</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div data-aos="fade-up" class="text-center">
<div class="mx-auto flex items-center justify-center h-16 w-16 rounded-full bg-indigo-100/30">
<span class="text-2xl font-bold text-indigo-600">1</span>
</div>
<h3 class="text-xl font-semibold text-gray-900 mt-4 mb-2">Browse Courses</h3>
<p class="text-gray-600">
Explore our curated collection of YouTube-based courses across various topics and skill levels.
</p>
</div>
<div data-aos="fade-up" class="text-center">
<div class="mx-auto flex items-center justify-center h-16 w-16 rounded-full bg-indigo-100/30">
<span class="text-2xl font-bold text-indigo-600">2</span>
</div>
<h3 class="text-xl font-semibold text-gray-900 mt-4 mb-2">Learn & Track</h3>
<p class="text-gray-600">
Watch structured lessons, track your progress, and complete quizzes to reinforce learning.
</p>
</div>
<div data-aos="fade-up" class="text-center">
<div class="mx-auto flex items-center justify-center h-16 w-16 rounded-full bg-indigo-100/30">
<span class="text-2xl font-bold text-indigo-600">3</span>
</div>
<h3 class="text-xl font-semibold text-gray-900 mt-4 mb-2">Get Certified</h3>
<p class="text-gray-600">
Earn verified certificates upon course completion to showcase your new skills.
</p>
</div>
</div>
</div>
<div class="text-center">
<h2 data-aos="fade-in" class="text-3xl font-bold text-gray-900 mb-6">Join Our Community</h2>
<p data-aos="fade-up" class="text-xl text-gray-600 max-w-3xl mx-auto mb-10">
Become part of a growing community of learners who are transforming their lives through accessible education.
</p>
<a data-aos="fade-up" href="auth/register.html" class="btn btn-primary text-lg px-8 py-4">Get Start Now</a>
</div>
</main>
<!-- Footer -->
<footer data-aos-duration="1000" class="bg-neutral-900 text-white mt-24 fade-in">
<div data-aos="fade-up" class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-2 lg:flex lg:gap-10 items-start px-8">
<!-- BRAND -->
<div class="lg:w-auto lg:mr-10 mb-10 lg:mb-0">
<div class="flex items-center mb-4">
<div class="flex-shrink-0 h-10 w-10">
<img src="./logo.png" alt="BYAMN Logo" class="h-full w-full object-contain" />
</div>
<h1
class="ml-3 font-bold bg-gradient-to-r from-indigo-600 to-purple-600 bg-clip-text text-transparent text-2xl">
BYAMN
</h1>
</div>
<p class="text-neutral-300 max-w-md">
Empowering learners worldwide with high-quality , accessible
education for the digital age.
</p>
</div>
<!-- PLATFORM -->
<div class="lg:w-40 mb-10 lg:mb-0">
<h3 class="text-white text-lg font-semibold mb-4">Platform</h3>
<ul class="space-y-2 text-neutral-300 whitespace-nowrap">
<li>
<a href="./courses.html" class="hover:text-white transition">Courses</a>
</li>
<li>
<a href="verification.html" class="hover:text-white transition">Certificate Verification</a>
</li>
<li>
<a href="./about.html" class="hover:text-white transition">About Us</a>
</li>
<li>
<a href="./faq.html" class="hover:text-white transition">FAQ</a>
</li>
<li>
<a href="./contact.html" class="hover:text-white transition">Contact</a>
</li>
</ul>
</div>
<!-- LEGAL -->
<div class="lg:w-40 mb-10 lg:mb-0">
<h3 class="text-white text-lg font-semibold mb-4">Legal</h3>
<ul class="space-y-2 text-neutral-300 whitespace-nowrap">
<li>
<a href="./privacy.html" class="hover:text-white transition">Privacy Policy</a>
</li>
<li>
<a href="./terms.html" class="hover:text-white transition">Terms of Service</a>
</li>
</ul>
</div>
<!-- NEWSLETTER (large width) -->
<div class="md:col-span-1 gap-4">
<div class="bg-neutral-800 p-6 rounded-xl w-full md:w-full lg:w-[90%] xl:w-[80%] 2xl:w-[75%]">
<h3 class="text-white text-xl font-semibold mb-4">
Stay Updated
</h3>
<p class="text-neutral-300 text-sm mb-4">
Get the latest course updates, learning tips, and exclusive
offers delivered to your inbox.
</p>
<div class="flex items-center gap-3 flex-wrap">
<input type="email" placeholder="Enter your email address"
class="flex-1 px-4 py-2 w-full md:w-full bg-neutral-700 border border-neutral-600 rounded-lg text-white placeholder-neutral-400 focus:ring-2 focus:ring-primary-500" />
<button class="bg-purple-600 hover:bg-purple-700 px-5 py-2 rounded-lg text-white whitespace-nowrap">
Subscribe
</button>
</div>
<p class="mt-3 text-xs text-gray-400">
By subscribing, you agree to our
<a class="underline" href="#">Privacy Policy</a>.
</p>
</div>
</div>
</div>
<div class="border-t border-neutral-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-neutral-300">© 2026 BYAMN. All rights reserved.</p>
<div class="flex space-x-6 mt-4 md:mt-0">
<a href="https://www.linkedin.com/company/byamn/" target="_blank" rel="noopener noreferrer"
class="text-neutral-300 hover:text-white transition-colors duration-200 transform hover:scale-110">
<span class="sr-only">LinkedIn</span>
<svg class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path fill-rule="evenodd"
d="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z"
clip-rule="evenodd"></path>
</svg>
</a>
<a href="https://www.facebook.com/byamn.byamn/" target="_blank" rel="noopener noreferrer"
class="text-neutral-300 hover:text-white transition-colors duration-200 transform hover:scale-110">
<span class="sr-only">Facebook</span>
<svg class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path fill-rule="evenodd"
d="M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12c0 4.991 3.657 9.128 8.438 9.878v-6.987h-2.54V12h2.54V9.797c0-2.506 1.492-3.89 3.777-3.89 1.094 0 2.238.195 2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63 1.562V12h2.773l-.443 2.89h-2.33v6.988C18.343 21.128 22 16.991 22 12z"
clip-rule="evenodd"></path>
</svg>
</a>
<a href="https://x.com/byamn.ai" target="_blank" rel="noopener noreferrer"
class="text-neutral-300 hover:text-white transition-colors duration-200 transform hover:scale-110">
<span class="sr-only">X (Twitter)</span> <svg class="h-6 w-6" fill="currentColor" viewBox="0 0 512 512"
aria-hidden="true">
<path
d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z" />
</svg>
</a>
</div>
</div>
</div>
</div>
</footer>
<!-- Initialize AOS -->
<script>
AOS.init({
duration: 1200, // optional: animation duration in ms
once: true // optional: run animation only once
});
</script>
<!-- Firebase configuration -->
<script type="module" src="./assets/js/firebase.js"></script>
<!-- Main JavaScript -->
<script src="assets/js/main.js"></script>
</body>
</html>