Skip to content

Commit

Permalink
chore: 🛠️ migrate site to Astro framework
Browse files Browse the repository at this point in the history
Switches from vanilla HTML/CSS to Astro framework, setting up proper project structure and component-based architecture while preserving existing design and functionality.
  • Loading branch information
davidgasquez committed Dec 28, 2024
1 parent c639c03 commit 481cd4c
Show file tree
Hide file tree
Showing 11 changed files with 5,628 additions and 112 deletions.
24 changes: 24 additions & 0 deletions web/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# 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/
5 changes: 5 additions & 0 deletions web/astro.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// @ts-check
import { defineConfig } from 'astro/config';

// https://astro.build/config
export default defineConfig({});
112 changes: 0 additions & 112 deletions web/index.html

This file was deleted.

Loading

0 comments on commit 481cd4c

Please sign in to comment.