Piped/src/components/PageNotFound.vue

12 lines
362 B
Vue
Raw Permalink Normal View History

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