Files
videoPlayer/app.vue
2025-10-02 01:52:03 -06:00

80 lines
2.2 KiB
Vue

<template>
<NuxtPage />
</template>
<script setup>
useHead({
title: 'Quantum Player - Video Player Futurista',
meta: [
{ name: 'description', content: 'Reproductor de video moderno con diseño cyberpunk. Reproduce tus videos con controles personalizados y múltiples calidades.' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
// Open Graph / Facebook
{ property: 'og:type', content: 'website' },
{ property: 'og:url', content: 'https://video.nucleoriofrio.com/' },
{ property: 'og:title', content: 'Quantum Player - Video Player Futurista' },
{ property: 'og:description', content: 'Reproductor de video moderno con diseño cyberpunk y controles personalizados' },
{ property: 'og:image', content: 'https://video.nucleoriofrio.com/og-image.png' },
// Twitter
{ name: 'twitter:card', content: 'summary_large_image' },
{ name: 'twitter:url', content: 'https://video.nucleoriofrio.com/' },
{ name: 'twitter:title', content: 'Quantum Player - Video Player Futurista' },
{ name: 'twitter:description', content: 'Reproductor de video moderno con diseño cyberpunk' },
{ name: 'twitter:image', content: 'https://video.nucleoriofrio.com/og-image.png' },
// Theme
{ name: 'theme-color', content: '#00ffff' },
{ name: 'apple-mobile-web-app-status-bar-style', content: 'black-translucent' }
],
link: [
{ rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' }
]
})
</script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background: #0a0a0f;
color: #fff;
overflow-x: hidden;
}
::selection {
background: rgba(0, 255, 255, 0.3);
color: #fff;
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.05);
}
::-webkit-scrollbar-thumb {
background: linear-gradient(180deg, #00ffff, #ff00ff);
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: linear-gradient(180deg, #00ffff, #00ff88);
}
</style>