Skip to content

Commit fbbb0a1

Browse files
committed
[RZA-250143]: Merge branch 'develop' into feature/RZA-250143
2 parents da5f4dc + 198e785 commit fbbb0a1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+1081
-1771
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,11 @@ Created Repo from template
2020

2121
## [3.1.0] - 2025-07-16
2222

23-
- Added Terms & Policy pages
23+
- Added Terms & Privacy pages
24+
- New header and Footer added
2425
- Added Story Section
26+
- Added Nakshtra Page
27+
- Home Page Redesign
2528

2629
### [Unreleased]
2730

astro.config.mjs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ export default defineConfig({
2222
style: {
2323
global: true // Ensure global styles are applied
2424
},
25+
//redirects: {
26+
// "/en/nakshtra": "/nakshtra",
27+
// "/blog": "https://xkeshav.com/blog"
28+
//},
2529
vite: {
2630
optimizeDeps: {
2731
exclude: ["@resvg/resvg-js"]

package.json

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@recursivezero/abcd",
3-
"version": "3.0.0",
3+
"version": "3.1.0",
44
"description": "A website for our kids trial phase of abcdkbd.com",
55
"homepage": "https://parixan.xyz",
66
"displayName": "abcd",
@@ -25,30 +25,12 @@
2525
"url": "https://github.com/xkeshav"
2626
},
2727
"contributors": [
28-
{
29-
"name": "Keshav Mohta",
30-
"email": "[email protected]",
31-
"github": "xkeshav",
32-
"role": "UI Engineer"
33-
},
3428
{
3529
"name": "Aditya Kumar Singh",
3630
"email": "[email protected]",
3731
"github": "adityasingh-7",
3832
"role": "UI Engineer"
3933
},
40-
{
41-
"name": "Vansh Raj",
42-
"email": "[email protected]",
43-
"github": "ciphrox",
44-
"role": "UI Engineer"
45-
},
46-
{
47-
"name": "Vamil Porwal",
48-
"email": "[email protected]",
49-
"github": "vamilP",
50-
"role": "UI Engineer"
51-
},
5234
{
5335
"name": "Ayush Tyagi",
5436
"email": "[email protected]",
@@ -67,6 +49,18 @@
6749
"github": "chhaviS04",
6850
"role": "UI Engineer"
6951
},
52+
{
53+
"name": "Harsh Saini",
54+
"email": "[email protected]",
55+
"github": "harsh01234s",
56+
"role": "UX Engineer"
57+
},
58+
{
59+
"name": "Keshav Mohta",
60+
"email": "[email protected]",
61+
"github": "xkeshav",
62+
"role": "Founder"
63+
},
7064
{
7165
"name": "Prakash Raj",
7266
"email": "[email protected]",
@@ -86,10 +80,16 @@
8680
"role": "UI Engineer"
8781
},
8882
{
89-
"name": "Harsh Saini",
90-
"email": "[email protected]",
91-
"github": "harsh01234s",
92-
"role": "UX Engineer"
83+
"name": "Vamil Porwal",
84+
"email": "[email protected]",
85+
"github": "vamilP",
86+
"role": "UI Engineer"
87+
},
88+
{
89+
"name": "Vansh Raj",
90+
"email": "[email protected]",
91+
"github": "ciphrox",
92+
"role": "UI Engineer"
9393
}
9494
],
9595
"keywords": [

public/assets/images/abcd.png

176 KB
Loading
-11.8 KB
Loading

src/assets/styles/astrology.css

Lines changed: 0 additions & 192 deletions
This file was deleted.

src/assets/styles/draw.css

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -304,19 +304,18 @@
304304
}
305305

306306
@media (max-width: 480px) {
307-
308-
#keyboard-trigger{
309-
height:32px !important;
307+
#keyboard-trigger {
308+
height: 32px !important;
310309
width: 32px !important;
311310
}
312311

313312
.share-trigger-button {
314-
height:32px !important;
313+
height: 32px !important;
315314
width: 32px !important;
316315
}
317316

318317
.share-trigger-button svg {
319-
height:12px !important;
318+
height: 12px !important;
320319
width: 12px !important;
321320
}
322321

src/assets/styles/header.css

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
display: grid;
1212
grid-template-columns: 1fr auto 1fr;
1313
align-items: center;
14+
min-height: 5rem;
1415

1516
.header__brand {
1617
display: flex;
@@ -30,6 +31,31 @@
3031
}
3132
}
3233

34+
.title {
35+
font-size: 3rem;
36+
font-weight: bold;
37+
background: linear-gradient(270deg, #ff416c, #ff4b2b, #1e90ff, #32cd32);
38+
background-size: 800% 800%;
39+
background-clip: inherit;
40+
-webkit-background-clip: text;
41+
-webkit-text-fill-color: transparent;
42+
animation: animateGradient 8s ease infinite;
43+
}
44+
45+
@keyframes animateGradient {
46+
0% {
47+
background-position: 0% 50%;
48+
}
49+
50+
50% {
51+
background-position: 100% 50%;
52+
}
53+
54+
100% {
55+
background-position: 0% 50%;
56+
}
57+
}
58+
3359
/* --- Navigation Links --- */
3460
.caption {
3561
display: flex;

src/assets/styles/index.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242
--bg-dark: #0f172a;
4343
--bg-light: #ffffff;
4444
--bg-secondary: #1e293b;
45-
--primary: #3b82f6;
4645
--primary-light: #60a5fa;
4746
--text-main: #212223;
4847
--text-primary: #cbd5e1;
@@ -124,6 +123,7 @@
124123
font-weight: bold;
125124
margin-bottom: 2rem;
126125
}
126+
127127
.grid {
128128
display: grid;
129129
gap: 1.5rem;
@@ -136,6 +136,7 @@
136136
padding: 1rem 1rem 2rem 1rem;
137137
border-top: 1px solid var(--section-divider);
138138
}
139+
139140
.section:nth-of-type(odd) {
140141
background: var(--section-bg-alt);
141142
}

0 commit comments

Comments
 (0)