Piped/src/components/PageNotFound.vue

8 lines
287 B
Vue
Raw Normal View History

2022-08-22 11:51:44 +00:00
<template>
<div class="flex flex-col justify-center items-center min-h-[88vh]">
2022-08-27 11:25:17 +00:00
<h1 class="font-bold !text-9xl">404</h1>
<h2 class="!text-2xl" v-t="'info.page_not_found'" />
2022-08-22 11:51:44 +00:00
<a class="btn mt-16" href="/" v-t="'actions.back_to_home'" />
</div>
</template>