Skip to content

Commit f929d24

Browse files
committed
Merge branch 'main' of github.com:recursivezero/domain into develop
2 parents feec563 + 8c398ae commit f929d24

File tree

12 files changed

+126
-36
lines changed

12 files changed

+126
-36
lines changed

.github/workflows/deploy.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Deploy to GitHub Pages
2+
3+
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
6+
push:
7+
branches: [main]
8+
# Allows you to run this workflow manually from the Actions tab on GitHub.
9+
workflow_dispatch:
10+
11+
# Allow this job to clone the repo and create a page deployment
12+
permissions:
13+
contents: read
14+
pages: write
15+
id-token: write
16+
17+
jobs:
18+
build:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout your repository using git
22+
uses: actions/checkout@v4
23+
- name: Install, build, and upload your site
24+
uses: withastro/action@v3
25+
with:
26+
path: .
27+
node-version: 20
28+
package-manager: npm
29+
30+
deploy:
31+
needs: build
32+
runs-on: ubuntu-latest
33+
environment:
34+
name: github-pages
35+
url: ${{ steps.deployment.outputs.page_url }}
36+
steps:
37+
- name: Deploy to GitHub Pages
38+
id: deployment
39+
uses: actions/deploy-pages@v4

.nojekyll

Whitespace-only changes.

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
recursivezero.com

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# RecursiveZero Private Limited
22

33
- 👋 Hi
4-
- 👀 I'm interested in building technology.
5-
- 🌱 I'm currently learning AI and web development.
6-
- 💞️ I'm looking to collaborate to ignite minds based on web technologies.
4+
- 👀 Im interested in building technology
5+
- 🌱 Im currently learning AI and mobile development
6+
- 💞️ Im looking to collaborate on any project which is based on web technologies.
77
- 📫 How to reach me mail me at <[email protected]>
8-
- 🌑 hosted on [recursivezero.com](https://recursivezero.com)
8+
9+
This is the page render as **recursivezero.com**

astro.config.mjs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import mdx from "@astrojs/mdx";
22
import react from "@astrojs/react";
33
import tailwind from "@astrojs/tailwind";
4-
import awsAmplify from "astro-aws-amplify";
54
import { defineConfig, passthroughImageService } from "astro/config";
65

76
// https://astro.build/config
87
export default defineConfig({
98
site: "https://recursivezero.com",
9+
base: "/",
1010
devToolbar: {
1111
enabled: false
1212
},
@@ -31,7 +31,8 @@ export default defineConfig({
3131
output: "server",
3232
adapter: awsAmplify(),
3333
build: {
34-
format: "directory"
34+
format: "directory",
35+
assets: "assets"
3536
},
3637
prefetch: {
3738
prefetchAll: true

domain.code-workspace

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,9 @@
169169
"*.log": "default"
170170
},
171171
"zenMode.centerLayout": false,
172-
"cSpell.words": [],
172+
"cSpell.words": [
173+
"withastro"
174+
],
173175
"workbench.editor.limit.excludeDirty": true,
174176
"workbench.colorCustomizations": {
175177
"activityBar.activeBackground": "#040043",

src/assets/icons/github.svg

Lines changed: 1 addition & 0 deletions
Loading

src/assets/icons/mail.svg

Lines changed: 4 additions & 0 deletions
Loading

src/assets/icons/x.svg

Lines changed: 1 addition & 0 deletions
Loading

src/assets/styles/menu.css

Lines changed: 26 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,27 @@
88
--header-height: 80px;
99
--sidebar-width: 16ch;
1010
--timing: 0.42s;
11-
--ease: linear(0 0%,
12-
0.0036 9.62%,
13-
0.0185 16.66%,
14-
0.0489 23.03%,
15-
0.0962 28.86%,
16-
0.1705 34.93%,
17-
0.269 40.66%,
18-
0.3867 45.89%,
19-
0.5833 52.95%,
20-
0.683 57.05%,
21-
0.7829 62.14%,
22-
0.8621 67.46%,
23-
0.8991 70.68%,
24-
0.9299 74.03%,
25-
0.9545 77.52%,
26-
0.9735 81.21%,
27-
0.9865 85%,
28-
0.9949 89.15%,
29-
1 100%);
11+
--ease: linear(
12+
0 0%,
13+
0.0036 9.62%,
14+
0.0185 16.66%,
15+
0.0489 23.03%,
16+
0.0962 28.86%,
17+
0.1705 34.93%,
18+
0.269 40.66%,
19+
0.3867 45.89%,
20+
0.5833 52.95%,
21+
0.683 57.05%,
22+
0.7829 62.14%,
23+
0.8621 67.46%,
24+
0.8991 70.68%,
25+
0.9299 74.03%,
26+
0.9545 77.52%,
27+
0.9735 81.21%,
28+
0.9865 85%,
29+
0.9949 89.15%,
30+
1 100%
31+
);
3032
}
3133

3234
.layout {
@@ -347,6 +349,10 @@
347349
}
348350
}
349351

352+
/*.theme-toggle svg use {
353+
display: none;
354+
}*/
355+
350356
[data-theme="system"] .theme-toggle svg symbol:nth-of-type(1),
351357
[data-theme="light"] .theme-toggle svg symbol:nth-of-type(2),
352358
[data-theme="dark"] .theme-toggle svg symbol:nth-of-type(3) {
@@ -365,4 +371,4 @@
365371
[data-debug="false"] .debug-toggle g:first-of-type {
366372
display: block;
367373
}
368-
}
374+
}

0 commit comments

Comments
 (0)