Initial commit: RepoDructor music player

- Nuxt 3 app with glassmorphism design
- Music streaming from local files
- Player controls with shuffle/repeat
- PWA support
- Responsive design for mobile
- Configured for proxy deployment
This commit is contained in:
2025-08-03 17:14:05 -06:00
commit 2f90d92ad9
14 changed files with 16786 additions and 0 deletions

18
layouts/default.vue Normal file
View File

@@ -0,0 +1,18 @@
<template>
<div>
<slot />
</div>
</template>
<script setup>
useHead({
title: 'RepoDructor - Music Player',
meta: [
{ name: 'description', content: 'A beautiful glassmorphism music player for your local network' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
]
})
</script>