mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2025-12-30 17:47:24 +01:00
17 lines
380 B
Vue
17 lines
380 B
Vue
<script setup lang="ts">
|
|
useHead({
|
|
title: "404. Not Found",
|
|
});
|
|
definePageMeta({
|
|
layout: "404",
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<h1 class="flex flex-col text-center font-extrabold">
|
|
<span class="text-7xl">404.</span>
|
|
<span class="mt-5 text-5xl"> Page Not Found </span>
|
|
<NuxtLink to="/" class="btn mt-5 text-xl"> Return Home </NuxtLink>
|
|
</h1>
|
|
</template>
|