-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
80 changed files
with
1,290 additions
and
7,772 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,24 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
# build output | ||
dist/ | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# next.js | ||
/.next/ | ||
/out/ | ||
# generated types | ||
.astro/ | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
# dependencies | ||
node_modules/ | ||
|
||
# debug | ||
# logs | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
|
||
# local env files | ||
# environment variables | ||
.env | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
!.env.example | ||
|
||
# vercel | ||
.vercel | ||
|
||
# typescript | ||
*.tsbuildinfo | ||
.env.production | ||
|
||
# storybook | ||
storybook-static | ||
storybook | ||
|
||
# cypress | ||
cypress/videos | ||
cypress/screenshots | ||
# macOS-specific files | ||
.DS_Store | ||
|
||
# custom | ||
*.log | ||
.yalc | ||
yalc.lock | ||
public/sitemap.xml | ||
public/robots.txt | ||
.vscode | ||
# jetbrains setting folder | ||
.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"recommendations": ["astro-build.astro-vscode"], | ||
"unwantedRecommendations": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"command": "./node_modules/.bin/astro dev", | ||
"name": "Development server", | ||
"request": "launch", | ||
"type": "node-terminal" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"[typescript]": { | ||
"editor.defaultFormatter": "biomejs.biome" | ||
}, | ||
"[typescriptreact]": { | ||
"editor.defaultFormatter": "biomejs.biome" | ||
}, | ||
"[javascript]": { | ||
"editor.defaultFormatter": "biomejs.biome" | ||
}, | ||
"[javascriptreact]": { | ||
"editor.defaultFormatter": "biomejs.biome" | ||
}, | ||
"editor.codeActionsOnSave": { | ||
"quickfix.biome": "explicit", | ||
"source.organizeImports.biome": "explicit" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
# rcrd.space 🦉 | ||
|
||
- **Framework**: [Next.js](https://nextjs.org) | ||
- **Framework**: [Astro](https://astro.build) | ||
- **Deployment**: [Vercel](https://vercel.com) | ||
- **Styling**: [Tailwind CSS](https://tailwindcss.com) and [Stitches](https://stitches.dev) | ||
- **Styling**: [Tailwind CSS](https://tailwindcss.com) | ||
|
||
## Running Locally | ||
|
||
```bash | ||
git clone https://github.com/rqbazan/rcrd.space.git | ||
cd rcrd.space | ||
pnpm i | ||
pnpm dev | ||
bun i | ||
bun dev | ||
``` | ||
|
||
## Documentation | ||
|
||
- [Definition of Done](./docs/definition-of-done.md) ✅ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import react from "@astrojs/react"; | ||
import sitemap from "@astrojs/sitemap"; | ||
import tailwind from "@astrojs/tailwind"; | ||
import { defineConfig } from "astro/config"; | ||
|
||
// https://astro.build/config | ||
export default defineConfig({ | ||
site: "https://rcrd.space", | ||
integrations: [ | ||
react(), | ||
tailwind({ | ||
applyBaseStyles: false, | ||
nesting: true, | ||
}), | ||
sitemap({ | ||
changefreq: "daily", | ||
lastmod: new Date(), | ||
}), | ||
], | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json", | ||
"vcs": { | ||
"enabled": true, | ||
"clientKind": "git", | ||
"useIgnoreFile": true | ||
}, | ||
"organizeImports": { | ||
"enabled": true | ||
}, | ||
"linter": { | ||
"enabled": true, | ||
"rules": { | ||
"recommended": true | ||
} | ||
}, | ||
"formatter": { | ||
"enabled": true, | ||
"indentStyle": "space" | ||
}, | ||
"javascript": { | ||
"globals": ["Astro"], | ||
"formatter": { | ||
"quoteStyle": "double", | ||
"semicolons": "always" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Definition of Done | ||
|
||
- Pages | ||
|
||
- [x] Home | ||
- [x] Uses | ||
- [x] Projects | ||
- [ ] Blog | ||
|
||
- Quality | ||
|
||
- [x] Custom Font | ||
- [ ] Responsive Images | ||
- [ ] Blur Placeholder Images | ||
- [ ] Fluid Typography | ||
|
||
- SEO | ||
|
||
- [x] Basics | ||
- [x] Favicon | ||
- [x] Sitemap | ||
- [x] Robots.txt | ||
- [x] Open Graph | ||
- [x] Twitter Card | ||
- [ ] RSS | ||
- [ ] Analytics | ||
|
||
- Theme | ||
|
||
- [x] Color Scheme | ||
- [x] Avoid Flashing | ||
|
||
- Animation | ||
|
||
- [x] Page Transitions | ||
- [ ] Disable Animations on Reduced Motion | ||
|
||
- Deployment | ||
|
||
- [x] CI/CD: Github Actions | ||
- [x] Deploy Provider: Vercel | ||
- [x] Redirects: `vercel.json` |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.