27 lines
605 B
Vue
27 lines
605 B
Vue
<template>
|
|
<div grid place-items-center px-6 py-24 sm="py-32" lg="px-8">
|
|
<div text-center>
|
|
<p text-base text-emerald-500 font-semibold>
|
|
404
|
|
</p>
|
|
<h1 mt-4 text-3xl text-neutral-300 font-bold tracking-tight sm="text-5xl">
|
|
Page not found
|
|
</h1>
|
|
<p mt-6 text-base text-neutral-400 leading-7>
|
|
Sorry, we couldn't find the page you're looking for.
|
|
</p>
|
|
<div mt-10 flex items-center justify-center gap-x-6>
|
|
<Hyperlink to="/" px-7>
|
|
Back
|
|
</Hyperlink>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
definePageMeta({
|
|
layout: "blank"
|
|
});
|
|
</script>
|