First commit

This commit is contained in:
Jezza Hehn 2025-05-08 02:47:09 +00:00
commit ff66758387
18 changed files with 2215 additions and 0 deletions

5
src/main.ts Normal file
View file

@ -0,0 +1,5 @@
import { createApp } from 'vue'
import './style.css'
import App from './App.vue'
createApp(App).mount('#app')