oneuptime/Docs/Views/NotFound.ejs

53 lines
No EOL
2.9 KiB
Text

<html lang="en" class="h-full antialiased __variable_e66fe9 __variable_b436a8 light scroll-smooth"
style="color-scheme: light;">
<head>
<%- include('./Partials/Head.ejs', {
enableGoogleTagManager: typeof enableGoogleTagManager !== 'undefined' ? enableGoogleTagManager : false
}) %>
</head>
<body class="flex min-h-full bg-white">
<div class="flex w-full flex-col">
<%- include('./Partials/Header.ejs') %>
<div class="relative mx-auto flex w-full max-w-8xl flex-auto justify-center sm:px-2 lg:px-8 xl:px-12">
<!-- Desktop sidebar -->
<div class="hidden lg:relative lg:block lg:flex-none">
<div class="absolute inset-y-0 right-0 w-[50vw] bg-gradient-to-r from-slate-50 to-slate-50/0"></div>
<div class="sticky top-[3.5rem] -ml-0.5 h-[calc(100vh-3.5rem)] w-64 overflow-y-auto overflow-x-hidden py-12 pl-0.5 pr-8 xl:w-72 xl:pr-12">
<%- include('./Partials/Nav.ejs') %>
</div>
</div>
<!-- Error content -->
<div class="min-w-0 max-w-2xl flex-auto px-4 py-16 lg:max-w-none lg:pl-8 lg:pr-0 xl:px-16">
<div class="flex flex-col items-center justify-center text-center py-16">
<div class="rounded-full bg-amber-100 p-4 mb-6">
<svg class="h-12 w-12 text-amber-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M9.172 16.172a4 4 0 015.656 0M9 10h.01M15 10h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</div>
<span class="inline-flex items-center rounded-full bg-amber-50 px-3 py-1 text-xs font-semibold text-amber-700 ring-1 ring-inset ring-amber-600/20 mb-4">
404 Error
</span>
<h1 class="font-bold text-3xl sm:text-4xl tracking-tight text-slate-900 mb-4">
Page not found
</h1>
<p class="text-lg text-slate-600 max-w-md mb-8">
Sorry, we couldn't find the page you're looking for. It might have been moved or doesn't exist.
</p>
<a href="/docs/introduction/getting-started"
class="inline-flex items-center gap-2 rounded-lg bg-indigo-600 px-5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-indigo-700 transition-colors">
<svg class="h-4 w-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 19l-7-7m0 0l7-7m-7 7h18"></path>
</svg>
Back to Documentation
</a>
</div>
</div>
</div>
</div>
</body>
</html>