Skip to content

Commit

Permalink
Rewrite using Astro and enhance accordingly (#75)
Browse files Browse the repository at this point in the history
- Full rewrite using Astro while maintaining overall layout
- Main page overhauled to contain roadmap and partial credits as well
- Majority of JavaScript logic rewritten in TypeScript
- Various improvements and refactoring based on Astro rewrite
  • Loading branch information
barnabwhy authored Jul 26, 2024
1 parent 80f47d8 commit 73933ca
Show file tree
Hide file tree
Showing 72 changed files with 5,603 additions and 1,345 deletions.
27 changes: 27 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# build output
dist/

# generated types
.astro/

# dependencies
node_modules/

# logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# environment variables
.env
.env.production

# macOS-specific files
.DS_Store

# jetbrains setting folder
.idea/

# vscode settings
.vscode/
4 changes: 4 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { defineConfig } from 'astro/config';

// https://astro.build/config
export default defineConfig({});
Binary file removed dist/assets/r2mm.png
Binary file not shown.
83 changes: 0 additions & 83 deletions dist/credits/index.html

This file was deleted.

158 changes: 0 additions & 158 deletions dist/data/contrib.json

This file was deleted.

50 changes: 0 additions & 50 deletions dist/data/core.json

This file was deleted.

Loading

0 comments on commit 73933ca

Please sign in to comment.