1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-30 09:45:15 +01:00
Files
dozzle/assets/pages/[...all].vue

17 lines
403 B
Vue

<template>
<PageWithLinks>
<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>
</PageWithLinks>
</template>
<script lang="ts" setup>
const { t } = useI18n();
setTitle(t("title.page-not-found"));
</script>