Files
RepoDructor/layouts/default.vue
josedario87 2f90d92ad9 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
2025-08-03 17:14:05 -06:00

18 lines
399 B
Vue

<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>