1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-21 13:23:07 +01:00
Files
dozzle/assets/pages/[...all].vue
2025-01-05 21:38:36 +00:00

17 lines
403 B
Vue

<template>
<PageWithLinks>
<div class="hero bg-base-200 min-h-screen">
<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>
</PageWithLinks>
</template>
<script lang="ts" setup>
const { t } = useI18n();
setTitle(t("title.page-not-found"));
</script>