-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
645 lines (572 loc) · 22.6 KB
/
Copy pathabout.html
File metadata and controls
645 lines (572 loc) · 22.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - CEMMA</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Raleway:wght@300;400;600&display=swap" rel="stylesheet">
<style>
/* Base Styles & Variables (Copied for consistency) */
:root {
--primary-color: #c19a6b;
--primary-dark: #8b6b3d;
--secondary-color: #1a1a1a;
--light-color: #f8f5f2;
--dark-color: #2a2a2a;
--text-color: #333;
--text-light: #777;
--font-heading: 'Playfair Display', serif;
--font-body: 'Raleway', sans-serif;
--transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
--shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
--border-radius: 8px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: var(--font-body);
color: var(--text-color);
background-color: var(--light-color);
line-height: 1.6;
overflow-x: hidden;
}
h1, h2, h3, h4 {
font-family: var(--font-heading);
font-weight: 700;
}
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.btn-primary {
background-color: var(--primary-color);
color: white;
border: none;
padding: 12px 24px;
border-radius: var(--border-radius);
font-family: var(--font-body);
font-weight: 600;
cursor: pointer;
transition: var(--transition);
text-transform: uppercase;
letter-spacing: 1px;
font-size: 14px;
}
.btn-primary:hover {
background-color: var(--primary-dark);
transform: translateY(-2px);
box-shadow: var(--shadow);
}
.section-title {
font-size: 2.5rem;
margin-bottom: 1rem;
text-align: center;
position: relative;
padding-bottom: 20px;
}
.section-title span {
color: var(--primary-color);
}
.section-title::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background-color: var(--primary-color);
}
.section-subtitle {
text-align: center;
color: var(--text-light);
margin-bottom: 3rem;
font-size: 1.1rem;
}
/* Preloader (Copied for consistency) */
.preloader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--light-color);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
transition: opacity 0.5s ease;
}
.preloader-inner {
text-align: center;
}
.preloader-logo img {
width: 150px;
height: auto;
margin-bottom: 20px;
}
.preloader-icon {
width: 60px;
height: 60px;
border: 4px solid var(--primary-color);
border-top-color: transparent;
border-radius: 50%;
animation: spin 1s linear infinite;
margin: 0 auto 20px;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
.loading-text {
font-family: var(--font-heading);
color: var(--primary-dark);
font-size: 1.2rem;
}
/* Navigation (Copied for consistency) */
.navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 20px 0;
background-color: rgba(248, 245, 242, 0.9);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
z-index: 1000;
transition: var(--transition);
}
.navbar.scrolled {
padding: 15px 0;
background-color: rgba(248, 245, 242, 0.98);
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.navbar .container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-family: var(--font-heading);
font-size: 1.8rem;
font-weight: 700;
color: var(--primary-dark);
text-decoration: none;
transition: var(--transition);
}
.logoImg {
width: 160px;
height: auto;
margin-right: 10px;
}
.logo:hover {
color: var(--primary-color);
}
.nav-links {
display: flex;
align-items: center;
gap: 30px;
}
.nav-links a {
color: var(--text-color);
text-decoration: none;
font-weight: 600;
font-size: 0.95rem;
transition: var(--transition);
position: relative;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background-color: var(--primary-color);
transition: var(--transition);
}
.nav-links a:hover::after {
width: 100%;
}
.nav-links a:hover {
color: var(--primary-color);
}
.hamburger {
display: none;
cursor: pointer;
width: 30px;
height: 20px;
flex-direction: column;
justify-content: space-between;
}
.hamburger .line {
width: 100%;
height: 2px;
background-color: var(--dark-color);
transition: var(--transition);
}
.hamburger.active .line:nth-child(1) {
transform: translateY(9px) rotate(45deg);
}
.hamburger.active .line:nth-child(2) {
opacity: 0;
}
.hamburger.active .line:nth-child(3) {
transform: translateY(-9px) rotate(-45deg);
}
/* About Us Section Styles */
.about-section {
padding: 120px 0; /* Adjust padding to account for fixed header */
background-color: white;
}
.about-content {
display: flex;
flex-wrap: wrap; /* Allow wrapping on smaller screens */
gap: 40px;
margin-top: 50px;
align-items: flex-start; /* Align items to the top */
}
.about-text, .author-info {
flex: 1; /* Allow sections to grow */
min-width: 300px; /* Minimum width before wrapping */
}
.about-text h3, .author-info h3 {
font-size: 1.8rem;
margin-bottom: 20px;
color: var(--secondary-color);
position: relative;
padding-bottom: 10px;
}
.about-text h3::after, .author-info h3::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 60px;
height: 2px;
background-color: var(--primary-color);
}
.about-text p, .author-info p {
color: var(--text-color);
line-height: 1.7;
margin-bottom: 15px;
}
.author-info .author-avatar-large {
width: 150px;
height: 150px;
border-radius: 50%;
overflow: hidden;
margin-bottom: 20px;
box-shadow: var(--shadow);
}
.author-info .author-avatar-large img {
width: 100%;
height: 100%;
object-fit: cover;
}
/* Footer (Copied for consistency) */
.footer {
background-color: var(--secondary-color);
color: white;
padding: 70px 0 0;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 50px;
}
.footer-brand .logo {
color: white;
font-size: 2rem;
margin-bottom: 20px;
display: inline-block;
}
.footer-brand p {
opacity: 0.7;
line-height: 1.7;
}
.footer-links {
display: flex;
flex-direction: column;
}
.footer-links h4 {
font-size: 1.2rem;
margin-bottom: 20px;
position: relative;
padding-bottom: 10px;
}
.footer-links h4::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 40px;
height: 2px;
background-color: var(--primary-color);
}
.footer-links a {
color: white;
opacity: 0.7;
text-decoration: none;
margin-bottom: 10px;
transition: var(--transition);
}
.footer-links a:hover {
opacity: 1;
color: var(--primary-color);
padding-left: 5px;
}
.footer-social h4 {
font-size: 1.2rem;
margin-bottom: 20px;
position: relative;
padding-bottom: 10px;
}
.footer-social h4::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 40px;
height: 2px;
background-color: var(--primary-color);
}
.footer-social a {
display: inline-block;
width: 40px;
height: 40px;
background-color: rgba(255, 255, 255, 0.1);
color: white;
border-radius: 50%;
text-align: center;
line-height: 40px;
margin-right: 10px;
transition: var(--transition);
}
.footer-social a:hover {
background-color: var(--primary-color);
transform: translateY(-5px);
}
.footer-bottom {
padding: 20px 0;
text-align: center;
border-top: 1px solid rgba(255, 255, 255, 0.1);
font-size: 0.9rem;
opacity: 0.7;
}
/* Responsive Styles (Copied and adjusted) */
@media (max-width: 992px) {
.section-title {
font-size: 2.2rem;
}
.about-content {
flex-direction: column; /* Stack content vertically */
align-items: center; /* Center items when stacked */
}
.about-text, .author-info {
min-width: auto; /* Remove min-width constraint */
width: 100%; /* Take full width */
text-align: center; /* Center text */
}
.about-text h3::after, .author-info h3::after {
left: 50%;
transform: translateX(-50%);
}
}
@media (max-width: 768px) {
.nav-links {
position: fixed;
top: 80px;
left: -100%;
width: 100%;
height: calc(100vh - 80px);
background-color: var(--light-color);
flex-direction: column;
align-items: center;
justify-content: flex-start;
padding-top: 40px;
gap: 25px;
transition: var(--transition);
}
.nav-links.active {
left: 0;
}
.hamburger {
display: flex;
}
.section-title {
font-size: 2rem;
}
.about-section {
padding: 100px 0;
}
}
@media (max-width: 576px) {
.btn-primary {
padding: 10px 20px;
}
}
</style>
</head>
<body>
<div class="preloader">
<div class="preloader-inner">
<div class="preloader-logo">
<img src="InShot_20250429_155304431.png" alt="logo">
</div>
<div class="preloader-icon"></div>
<div class="loading-text">Say Something...</div>
</div>
</div>
<nav class="navbar">
<div class="container">
<a href="index.html" class="logo"><img class="logoImg" src="InShot_20250429_155913334.png" alt=" logo"></a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="index.html#featured">Featured</a>
<a href="index.html#your-blogs">Your Blogs</a>
<a href="contact.html">Contact</a>
<a href="about.html">About Us</a> </div>
<div class="hamburger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
</div>
</nav>
<section class="about-section">
<div class="container">
<h2 class="section-title">About <span>Us</span></h2>
<p class="section-subtitle">Learn more about CEMMA and its creator</p>
<div class="about-content">
<div class="about-text">
<h3>Our Story: The Essence of CEMMA</h3>
<p>
CEMMA is more than just a blogging platform; it's a space crafted for expression, connection, and the sharing of ideas. The name "CEMMA" itself holds deep meaning, derived from the Swahili word "sema," which translates to "speak" or "say." This origin perfectly encapsulates the platform's core mission: to empower individuals to voice their thoughts, share their perspectives, and engage in meaningful dialogue. We believe that everyone has a unique story to tell, and CEMMA provides an elegant and intuitive environment to bring those stories to life.
</p>
<p>
Our journey began with a vision to create a blogging experience that blends luxurious design with seamless functionality. We wanted to move beyond the cluttered and generic platforms, offering a clean, aesthetically pleasing, and user-friendly interface that makes writing and reading a joy. From the carefully selected typography to the thoughtful layout, every element of CEMMA is designed to enhance the user's experience and put the focus squarely on the content.
</p>
<p>
We are committed to fostering a vibrant and supportive community where diverse voices are welcomed and celebrated. Whether you're a seasoned writer or just starting out, CEMMA provides the tools and the audience to share your passion with the world. We continuously strive to improve the platform, adding new features and refining existing ones based on user feedback, ensuring that CEMMA remains a leading destination for those who value quality, elegance, and the power of words.
</p>
</div>
<div class="author-info">
<h3>Meet the Creator</h3>
<div class="author-avatar-large">
<img src="myProfImg.jpg" alt="Brian Kathurima">
</div>
<p>
CEMMA was brought to life by **Brian Kathurima**, a passionate computer science and software development professional. With a strong background in building robust and user-friendly applications, Brian envisioned a blogging platform that reflects a commitment to quality and a deep understanding of user needs.
</p>
<p>
Brian's expertise in software development is the foundation of CEMMA's seamless functionality and elegant design. His dedication to clean code and intuitive user interfaces ensures that both writers and readers have an exceptional experience on the platform. CEMMA is a testament to his skills and his belief in the power of technology to facilitate creative expression.
</p>
<p>
Driven by a desire to contribute to the online community, Brian continues to work on enhancing CEMMA, exploring new features and improvements to make it the best possible platform for sharing stories and ideas.
</p>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-brand">
<a href="index.html" class="logo"><img class="logoImg" src="InShot_20250429_155913334.png" alt="logo"></a>
<p>Elevating storytelling through luxurious design and seamless technology.</p>
</div>
<div class="footer-links">
<h4>Quick Links</h4>
<a href="index.html">Home</a>
<a href="index.html#featured">Featured</a>
<a href="index.html#your-blogs">Your Blogs</a>
<a href="contact.html">Contact</a>
<a href="about.html">About Us</a> </div>
<div class="footer-social">
<h4>Connect</h4>
<a href="https://x.com/kb45165476" target="_blank" rel="noopener" title="Follow us on Twitter"><i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com/kbrian1237?utm_source=ig_web_button_share_sheet&igsh=ZDNlZDc0MzIxNw==" target="_blank" rel="noopener" title="Follow us on Instagram"><i class="fab fa-instagram"></i></a>
<a href="https://pin.it/6ya0hONH6" target="_blank" rel="noopener" title="Follow us on Pinterest"><i class="fab fa-pinterest"></i></a>
<a href="https://www.linkedin.com/in/brian-kathurima-8404082b4/" target="_blank" rel="noopener" title="Connect with us on LinkedIn"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/kbrian1237" target="_blank" rel="noopener" title="Check out our GitHub"><i class="fab fa-github"></i></a>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 CEMMA Blog Platform. All rights reserved.</p>
</div>
</div>
</footer>
<script>
document.addEventListener('DOMContentLoaded', function() {
// Preloader (Copied for consistency)
const preloader = document.querySelector('.preloader');
window.addEventListener('load', function() {
setTimeout(function() {
preloader.style.opacity = '0';
setTimeout(function() {
preloader.style.display = 'none';
}, 500);
}, 1000);
});
// Mobile Navigation (Copied for consistency)
const hamburger = document.querySelector('.hamburger');
const navLinks = document.querySelector('.nav-links');
hamburger.addEventListener('click', function() {
this.classList.toggle('active');
navLinks.classList.toggle('active');
});
// Close mobile menu when clicking on a link (Copied for consistency)
document.querySelectorAll('.nav-links a').forEach(link => {
link.addEventListener('click', function() {
hamburger.classList.remove('active');
navLinks.classList.remove('active');
});
});
// Navbar scroll effect (Copied for consistency)
window.addEventListener('scroll', function() {
const navbar = document.querySelector('.navbar');
if (window.scrollY > 50) {
navbar.classList.add('scrolled');
} else {
navbar.classList.remove('scrolled');
}
});
// Smooth scrolling for anchor links (Copied for consistency - adjusted)
// This page doesn't have sections to scroll to, but keeping the listener
// for robustness or future additions. It won't do anything if href is just #.
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
const targetId = this.getAttribute('href');
// Prevent default if targetId is just "#" or empty
if (targetId === '#' || targetId === '') {
e.preventDefault();
return;
}
try {
const targetElement = document.querySelector(targetId);
if (targetElement) {
e.preventDefault(); // Prevent default only if a valid target element is found
window.scrollTo({
top: targetElement.offsetTop - 80, // Adjust for fixed header if any
behavior: 'smooth'
});
}
} catch (error) {
console.error('Error with querySelector for:', targetId, error);
// Optionally, still prevent default if querySelector fails
e.preventDefault();
}
});
});
});
</script>
</body>
</html>