Files
homebox/frontend/pages/[...all].vue
2024-09-06 10:49:28 -04:00

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>