frontend/app/pages/public.vue

20 lines
399 B
Vue
Raw Normal View History

<template>
<TimelineScroller>
<Public />
</TimelineScroller>
</template>
<script setup lang="tsx">
import Public from "~/components/timelines/public.vue";
import TimelineScroller from "~/components/timelines/timeline-scroller.vue";
2025-07-16 07:48:39 +02:00
import * as m from "~~/paraglide/messages.js";
useHead({
title: m.lost_trick_dog_grace(),
});
definePageMeta({
layout: "app",
});
</script>