mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2025-12-30 17:47:24 +01:00
16 lines
323 B
Vue
16 lines
323 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 text-blue-500">
|
|
<span class="text-7xl">404.</span>
|
|
<span class="mt-5 text-5xl"> Page Not Found </span>
|
|
</h1>
|
|
</template>
|