Initial commit: Vue 3 coming soon page for Ariege.io with Vue Bits Galaxy background

- Set up Vue 3 project with Vite
- Added OGL-powered galaxy background component from Vue Bits
- Implemented coming soon page with responsive design
- Added proper attribution for MIT + Commons Clause licensed component
- Configured project dependencies and build setup

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Patrick Mulligan 2025-08-03 14:03:49 +02:00
commit 22e4c1bdc1
8 changed files with 1742 additions and 0 deletions

6
vite.config.js Normal file
View file

@ -0,0 +1,6 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
})