First commit of ayerble.com

Create vite configuration
Create Three.js animation background
Add docker support
This commit is contained in:
Aaron Po
2026-03-03 01:25:51 -05:00
commit 9cdcbd5526
13 changed files with 1564 additions and 0 deletions

11
src/main.ts Normal file
View File

@@ -0,0 +1,11 @@
import './style.css';
import { initBackground } from './background';
import { initNavigation } from './navigation';
const canvas = document.getElementById('bg-canvas') as HTMLCanvasElement | null;
if (canvas) {
initBackground(canvas);
}
initNavigation();