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