21 lines
350 B
Vue
21 lines
350 B
Vue
<template>
|
|
<div>
|
|
<NuxtPage />
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
/* Critical CSS - Loaded immediately to prevent FOUC */
|
|
html {
|
|
background-color: #1e1440; /* purple-darkest */
|
|
color: #f8fafc; /* white/slate-50 */
|
|
font-family: 'Roboto', system-ui, -apple-system, sans-serif;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
min-height: 100vh;
|
|
}
|
|
</style>
|