A modernized version of Eric Lee's portfolio website built with Svelte and SvelteKit.
# Install dependencies
npm install
# Start development server
npm run dev
# Build for production
npm run build
src/
├── lib/
│ └── components/ # Reusable components
├── routes/
│ ├── +layout.svelte # Main layout
│ └── +page.svelte # Home page
└── app.html # Base HTML template
static/ # Static assets
This project uses git for version control. Key commands:
# Check status
git status
# Add files
git add .
# Commit changes
git commit -m "Description of changes"
# Push to repository
git push origin main