frontend/app/components/errors/ReachedEnd.vue

16 lines
392 B
Vue
Raw Normal View History

<template>
<Alert>
<AlertTitle>{{ m.steep_suave_fish_snap() }}</AlertTitle>
<AlertDescription>
{{ m.muddy_bland_shark_accept() }}
</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>