frontend/pages/public.vue

30 lines
638 B
Vue
Raw Normal View History

<template>
2024-05-12 07:26:29 +02:00
<div class="mx-auto max-w-2xl w-full">
<TimelineScroller>
<Public />
</TimelineScroller>
2024-05-12 07:26:29 +02:00
</div>
</template>
<script setup lang="ts">
import Public from "~/components/timelines/public.vue";
import TimelineScroller from "~/components/timelines/timeline-scroller.vue";
import * as m from "~/paraglide/messages.js";
useHead({
title: "Public",
});
definePageMeta({
layout: "app",
2024-12-07 23:05:26 +01:00
breadcrumbs: () => [
{
text: m.steep_aqua_fox_harbor(),
},
{
text: m.lost_trick_dog_grace(),
href: "/public",
},
],
});
</script>