1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-31 18:17:23 +01:00
Files
dozzle/assets/pages/[...all].vue
2023-11-06 21:59:53 +00:00

17 lines
407 B
Vue

<template>
<page-with-links>
<div class="hero min-h-screen bg-base-200">
<div class="hero-content text-center">
<div class="max-w-md">
<p class="py-6 text-2xl font-bold">{{ $t("error.page-not-found") }}</p>
</div>
</div>
</div>
</page-with-links>
</template>
<script lang="ts" setup>
const { t } = useI18n();
setTitle(t("title.page-not-found"));
</script>