frontend/app/components/errors/NotFound.vue

14 lines
367 B
Vue
Raw Normal View History

<template>
<Alert>
<AlertTitle>{{ m.empty_awful_lark_dart() }}</AlertTitle>
2025-12-09 22:32:22 +01:00
<AlertDescription>{{ m.clean_even_mayfly_tap() }}</AlertDescription>
</Alert>
</template>
<script lang="ts" setup>
import { Alert, AlertDescription, AlertTitle } from "~/components/ui/alert";
2025-07-16 07:48:39 +02:00
import * as m from "~~/paraglide/messages.js";
</script>
<style></style>