Skip to content

Commit 1d61567

Browse files
Develop: Landing Page Redesign (#179)
2 parents 14dd64e + aef52da commit 1d61567

36 files changed

+2061
-200
lines changed

.github/workflows/deploy.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
name: Deploy to GitHub Pages
22

33
on:
4-
# Trigger the workflow every time you push to the `main` branch
5-
# Using a different branch name? Replace `main` with your branch’s name
64
push:
75
branches: [main]
8-
# Allows you to run this workflow manually from the Actions tab on GitHub.
96
workflow_dispatch:
107

11-
# Allow this job to clone the repo and create a page deployment
128
permissions:
139
contents: read
1410
pages: write
@@ -18,21 +14,26 @@ jobs:
1814
build:
1915
runs-on: ubuntu-latest
2016
steps:
21-
- name: Checkout your repository using git
17+
- name: Checkout repository
2218
uses: actions/checkout@v4
23-
- name: Install, build, and upload your site
19+
20+
- name: Install, build, and prepare Astro site
2421
uses: withastro/action@v3
2522
with:
26-
path: . # The root location of your Astro project inside the repository. (optional)
27-
node-version: 20 # The specific version of Node that should be used to build your site. Defaults to 16. (optional)
28-
package-manager: npm # The Node package manager that should be used to install dependencies and build your site. Automatically detected based on your lockfile. (optional)
23+
path: .
24+
node-version: 20
25+
package-manager: npm
26+
27+
- name: Upload GitHub Pages artifact (v4)
28+
uses: actions/upload-pages-artifact@v2
29+
with:
30+
path: ./dist
2931

3032
deploy:
3133
needs: build
3234
runs-on: ubuntu-latest
3335
environment:
3436
name: github-pages
35-
url: ${{ steps.deployment.outputs.page_url }}
3637
steps:
3738
- name: Deploy to GitHub Pages
3839
id: deployment

.vscode/dictionaries/project-words.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ vyanjan
119119
waitlist
120120
webring
121121
werkzeug
122+
withastro
122123
अक्टूबर
123124
अगस्त
124125
अप्रैल

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@ Created Repo from template
4141
- Added Google Analytics with partytown
4242
- Added Disha and Purana names in Glossary
4343

44+
## [3.3.0] - Nov 30 2025
45+
46+
- Landing Page Redesign
47+
- CrossWord page update
48+
4449
### [Unreleased]
4550

4651
Here we write upgrading notes for brands. It's a team effort to make them as straightforward as possible.

abcd.code-workspace

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,12 +122,12 @@
122122
"dist/**": true
123123
},
124124
"git.autofetch": true,
125-
"git.branchPrefix": "feature/",
125+
"git.branchPrefix": "feature/RZA-25000X",
126126
"git.branchProtection": [
127127
"develop",
128128
"main"
129129
],
130-
"git.branchRandomName.enable": true,
130+
"git.branchRandomName.enable": false,
131131
"git.confirmSync": false,
132132
"git.enableCommitSigning": false,
133133
"git.enableSmartCommit": true,
@@ -192,7 +192,7 @@
192192
"*.log": "default"
193193
},
194194
"zenMode.centerLayout": false,
195-
"cSpell.words": [],
195+
"cSpell.words": [ ],
196196
"workbench.editor.limit.excludeDirty": true,
197197
"files.readonlyInclude": {
198198
".githooks/**": true

astro.config.mjs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ import partytown from "@astrojs/partytown";
33
import sitemap from "@astrojs/sitemap";
44
import { defineConfig } from "astro/config";
55

6+
const isProd = process.env.NODE_ENV === 'production';
7+
8+
console.log({ isProd })
9+
610
// https://astro.build/config
711
export default defineConfig({
812
site: "https://abcdkbd.com",
@@ -20,12 +24,12 @@ export default defineConfig({
2024
svg: true
2125
},
2226
integrations: [
23-
partytown({
27+
isProd ? partytown({
2428
// https://partytown.qwik.dev/google-tag-manager/#google-analytics-4-ga4
2529
config: {
2630
forward: ["dataLayer.push"]
2731
}
28-
}),
32+
}) : null,
2933
sitemap(),
3034
mdx()
3135
],

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@recursivezero/abcd",
3-
"version": "3.2.4",
3+
"version": "3.3.0",
44
"description": "A website for our kids trial phase of abcdkbd.com",
55
"homepage": "https://abcdkbd.com",
66
"displayName": "abcd",

src/assets/styles/cards/stack.css

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
display: flex;
4747
flex-direction: column;
4848
align-items: center;
49-
justify-content: center;
49+
justify-content: start;
5050
gap: 2rem;
5151
color: #f1f5f9;
5252
font:
@@ -92,7 +92,6 @@
9292
flex-direction: column;
9393
align-items: center;
9494
justify-content: start;
95-
flex: 1;
9695
width: 100%;
9796
}
9897

@@ -392,10 +391,12 @@
392391
padding: 1rem 0.5rem;
393392
justify-content: flex-start;
394393
}
394+
395395
.alphabet-container {
396396
height: 600px;
397397
gap: 0rem;
398398
}
399+
399400
.alphabet-title {
400401
font-size: 1.5rem;
401402
}
@@ -443,4 +444,4 @@
443444
padding: 0.4rem 0.8rem;
444445
bottom: 5px;
445446
}
446-
}
447+
}

0 commit comments

Comments
 (0)