You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
350 B
20 lines
350 B
<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>
|
|
|