aboutsummaryrefslogtreecommitdiff
path: root/error.vue
blob: 4d1a5fec3b2bf7088e325d9f8749f8abdef09ee2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<template>
    <section class="space-y-4">
        <div class="flex flex-col justify-center items-center h-screen gap-2">
            <div class="flex flex-col items-center">
                <h1 class="text-error text-7xl font-bold uppercase">Error</h1>
                <p class="text-primary text-lg">Something Went Wrong!</p>
            </div>
            <NuxtLink to="/" class="text-primary bg-error rounded-sm py-1 px-4 hover:bg-opacity-75">Go Back Home</NuxtLink>
        </div>
    </section>
</template>