Nuxt/packages/ui-templates/templates/error-dev/index.html
Sébastien Chopin cf4be2e734 feat: new templates design (#81)
* update error pages

* update button 404

* refactor(templates): new design

* refactor(welcome): new design

* refactor: update gradient

* feat: gradiant transition

* feat: error-dev page + update

* refactor: reponsive

* chore: improvements

* chore: no need for lang

* fix(welcome): gradient border

* chore: new loading screen

* chore: 3px is good

* Delete index_old.html

* chore: remove extra lines

* chore: welcome lighter

* chore: lighter for dev error

* fix: mention `NuxtWelcome` and format code

* chore: format html files

* move version to main and set to empty by default

Co-authored-by: Alexandre Chopin <alex@nuxtjs.com>
Co-authored-by: Florent <florentdelerue@hotmail.com>
Co-authored-by: Pooya Parsa <pyapar@gmail.com>
2022-03-30 16:16:31 +02:00

25 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>{{ messages.statusCode }} - {{ messages.statusMessage }} | {{ messages.appName }}</title>
<meta charset="utf-8"/>
<meta content="width=device-width,initial-scale=1.0,minimum-scale=1.0" name="viewport"/>
<script type="module" src="/styles.ts"></script>
<style>
.spotlight {
z-index: -1;
background: linear-gradient(45deg, #00DC82 0%, #36E4DA 50%, #0047E1 100%);
filter: blur(40vh);
}
</style>
</head>
<body class="font-sans antialiased bg-white px-10 pt-14 dark:bg-black text-black dark:text-white min-h-screen flex flex-col">
<div class="fixed -bottom-1/2 left-0 right-0 h-2/3 spotlight"></div>
<h1 class="text-6xl sm:text-8xl font-medium mb-6">{{ messages.statusCode }}</h1>
<p class="text-xl sm:text-2xl font-light mb-8 leading-tight">{{ messages.description }}</p>
<div class="bg-white rounded-t-md bg-black/5 dark:bg-white/10 flex-1 overflow-y-auto h-auto">
<pre class="text-xl font-light leading-tight z-10 p-8">{{ messages.stack }}</pre>
</div>
</body>
</html>