Skip to content

Commit 0fa518d

Browse files
committed
[RZB-250099]: update about us page
1 parent 4372e24 commit 0fa518d

File tree

13 files changed

+65
-56
lines changed

13 files changed

+65
-56
lines changed

abcd.code-workspace

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@
146146
"prettier.trailingComma": "none",
147147
"scss.lint.emptyRules": "ignore",
148148
"search.exclude": {
149+
".github/**": true,
149150
"dist/**": true,
150151
"package-lock.json": true
151152
},

src/assets/images/ABCD.png

-40.6 KB
Binary file not shown.

src/assets/styles/common.css

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
.link__active,
2828
.text__active {
29-
@apply text-customLight-active dark:text-customDark-active;
29+
color: hsl(from blue 80 10 10)
3030
}
3131

3232
.content {
@@ -42,6 +42,14 @@
4242
text-align: center;
4343
}
4444

45-
.m-0 {
46-
margin: 0;
45+
.hide {
46+
content-visibility: hidden;
4747
}
48+
49+
::disabled {
50+
pointer-events: none;
51+
}
52+
53+
.no__link {
54+
text-decoration: none;
55+
}

src/assets/styles/footer.css

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,12 @@
4545
padding: 0.5rem 1rem;
4646
background-color: var(--bg-tertiary);
4747
color: var(--text-secondary);
48-
border: 1px solid var(--border-color);
48+
border: 1px solid var(--primary);
4949
border-radius: 8px;
5050
cursor: pointer;
5151
font-size: 0.9rem;
5252
font-weight: 500;
5353
transition: all 0.2s ease;
54-
border-style: solid;
5554
}
5655

5756
.footer-theme-toggle:hover {
@@ -167,7 +166,6 @@
167166
@media (prefers-color-scheme: dark) {
168167
.footer__nav {
169168
color: #6b7280;
170-
/* text-gray-500 */
171169
}
172170
}
173171

@@ -179,13 +177,11 @@
179177

180178
.footer__nav--item:hover {
181179
color: #3b82f6;
182-
/* blue-500 */
183180
}
184181

185182
@media (prefers-color-scheme: dark) {
186183
.footer__nav--item:hover {
187184
color: #60a5fa;
188-
/* blue-400 */
189185
}
190186
}
191187

@@ -261,7 +257,7 @@
261257
transition: transform 0.2s ease-in-out;
262258
}
263259

264-
.footer__nav--item[open] > summary .fa-chevron-down {
260+
.footer__nav--item[open]>summary .fa-chevron-down {
265261
transform: rotate(180deg);
266262
}
267263

@@ -278,4 +274,4 @@
278274
margin-top: 1rem;
279275
font-size: 0.85rem;
280276
}
281-
}
277+
}

src/components/about/HeroSection.astro

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
import LogoImage from "@/assets/images/ABCD.png";
32
import { Image } from "astro:assets";
3+
import LogoImage from "/public/assets/images/ABCD.png";
44
55
interface Props {
66
appName: string;
@@ -11,8 +11,7 @@ const { appName } = Astro.props;
1111

1212
<section class="hero-section">
1313
<div class="hero-content">
14-
<Image src={LogoImage} alt="Logo" width={400} height={300} loading="eager" class={"hero-logo"} />
15-
14+
<Image src={LogoImage} alt="ABCD logo" width={400} height={300} loading="eager" class="hero-logo" />
1615
<h1 class="hero-title">Learning Made <span class="text-highlight">Magical!</span></h1>
1716
<p class="hero-text">
1817
At {appName}, we transform education into captivating adventures that ignite young minds. Our interactive platform
@@ -21,7 +20,7 @@ const { appName } = Astro.props;
2120
</div>
2221
<div class="hero-bubbles">
2322
{
24-
["A", "B", "C", "D", "1", "2", "3", "🎈", "📚", "🌈"].map((char, i) => (
23+
["A", "B", "C", "📚", "1", "2", "3", "🎈", "🌈"].map((char, i) => (
2524
<span class="bubble" style={`--i: ${i}; --size: ${Math.random() * 2 + 1}rem;`} aria-hidden="true">
2625
{char}
2726
</span>

src/components/about/TechSection.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import "@/assets/styles/about.css";
1818
))
1919
}
2020
</div>
21-
<a href="https://parixan.xyz" class="btn btn-primary">Start Your Learning Adventure</a>
21+
<a href="https://parixan.xyz" class="btn btn-primary">Start your learning adventure</a>
2222
</div>
2323
</section>
2424

src/components/home/HeroSection.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ import "@/assets/styles/home/hero-section.css";
1111
eight.
1212
</p>
1313
<div class="cta-buttons">
14-
<a href="/varnmala">
15-
<button class="button green">Start Learning Now</button>
14+
<a href="/varnmala" class="no__link">
15+
<button class="button green">Start learning Now</button>
1616
</a>
17-
<a href="/survey">
17+
<a href="/parent">
1818
<button class="button gray">For Parents</button>
1919
</a>
2020
</div>
Lines changed: 8 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,23 @@
11
# About Us
22

3+
At **abcdkbd**, we transform education into captivating adventures that ignite young minds. Our interactive platform takes children on an unforgettable journey through letters, words, and diverse cultures.
4+
35
## 🎯 Helping Children Learn, Play, and Grow
46

5-
We’re building a fun, engaging, and interactive learning platform
6-
designed especially for elementary school children to explore,
7-
understand, and love the world of letters, numbers, and basic concepts.
7+
We’re building a fun, engaging, and interactive learning platform designed especially for elementary school children to explore, understand, and love the world of letters, numbers, and basic concepts.
88

99
---
1010

1111
## 🚀 Our Mission
1212

13-
To make early education joyful and accessible using simple,
14-
child-friendly digital tools that inspire curiosity, creativity,
15-
and confidence.
13+
To make early education joyful and accessible using simple, child-friendly digital tools that inspire curiosity, creativity, and confidence.
1614

1715
---
1816

1917
## 👨‍🏫 Who We Are
2018

21-
We are a passionate group of educators, designers, and developers
22-
who believe learning should be playful, meaningful, and rooted in
23-
real understanding. Based in India, we aim to support teachers,
24-
parents, and schools by providing high-quality,
25-
curriculum-aligned educational content.
19+
We are a passionate group of educators, designers, and developers who believe learning should be playful, meaningful, and rooted in real understanding.
20+
Based in India, we aim to support teachers, parents, and schools by providing high-quality,curriculum-aligned educational content.
2621

2722
---
2823

@@ -32,7 +27,7 @@ curriculum-aligned educational content.
3227
- Simple math & reading practice
3328
- Interactive storytelling
3429
- Coloring & memory activities
35-
- Multilingual (English + Hindi) word learning
30+
- Multilingual elementary learning
3631
- No distractions – ad-free, safe environment
3732

3833
---
@@ -47,17 +42,6 @@ curriculum-aligned educational content.
4742

4843
---
4944

50-
## 👩‍💻 Meet Our Team
51-
52-
**Keshav Mohta** – Product Architect & Lead Developer
53-
**[Name]** – Early Childhood Educator
54-
**[Name]** – Illustrator & UI Designer
55-
**[Name]** – Curriculum Advisor
56-
57-
We bring together tech and teaching to build tools that really help.
58-
59-
---
60-
6145
## 💡 Our Core Values
6246

6347
- **Simplicity** – Easy-to-use design for every age
@@ -71,7 +55,6 @@ We bring together tech and teaching to build tools that really help.
7155
## Contact
7256

7357
We’d love to hear from you! Please reach out to us at .
74-
7558
We’re always looking to collaborate with educators and contributors
7659
who believe in the power of playful learning. Got feedback or ideas?
77-
👉 **[Get in touch with us →](#contact)**
60+
👉 **Get in touch with us → [[email protected]](mailto:[email protected])**
File renamed without changes.

src/layouts/common/Footer.astro

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ import ToggleIcon from "@/assets/icons/toggle.svg";
1212
abcd<span class="kbd">kbd</span>
1313
</div>
1414
<p>Making learning fun and engaging for young minds everywhere.</p>
15-
<div class="social">
16-
<a href="https://twitter.com/" aria-label="X" target="_blank" rel="noopener"
15+
<div class="social hide">
16+
<a href="https://twitter.com/" aria-label="X" target="_blank" rel="noopener noreferrer"
1717
><i class="fa-brands fa-x-twitter"></i></a
1818
>
19-
<a href="https://facebook.com/" aria-label="Facebook" target="_blank" rel="noopener"
19+
<a href="https://facebook.com/" aria-label="Facebook" target="_blank" rel="noopener noreferrer"
2020
><i class="fa-brands fa-facebook"></i></a
2121
>
22-
<a href="https://instagram.com/" aria-label="Instagram" target="_blank" rel="noopener"
22+
<a href="https://instagram.com/" aria-label="Instagram" target="_blank" rel="noopener noreferrer"
2323
><i class="fa-brands fa-instagram"></i></a
2424
>
25-
<a href="https://youtube.com/" aria-label="YouTube" target="_blank" rel="noopener"
25+
<a href="https://youtube.com/" aria-label="YouTube" target="_blank" rel="noopener noreferrer"
2626
><i class="fa-brands fa-youtube"></i></a
2727
>
2828
</div>
@@ -44,7 +44,7 @@ import ToggleIcon from "@/assets/icons/toggle.svg";
4444
<a href="/math">Math</a>
4545
<a href="/crossword">Games</a>
4646
<a href="/draw">Creativity</a>
47-
<a href="/panel">Logic</a>
47+
<a href="/map">India Map</a>
4848
</div>
4949
</details>
5050
<details class="footer__nav--item" open>

0 commit comments

Comments
 (0)