mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
23 lines
464 B
Vue
23 lines
464 B
Vue
<template>
|
|
<div class="mx-auto max-w-2xl w-full">
|
|
<TimelineScroller>
|
|
<Local />
|
|
</TimelineScroller>
|
|
</div>
|
|
</template>
|
|
|
|
|
|
<script lang="tsx" setup>
|
|
import Local from "~/components/timelines/local.vue";
|
|
import TimelineScroller from "~/components/timelines/timeline-scroller.vue";
|
|
import * as m from "~/paraglide/messages.js";
|
|
|
|
useHead({
|
|
title: m.crazy_game_parrot_pave(),
|
|
});
|
|
|
|
definePageMeta({
|
|
layout: "app",
|
|
});
|
|
</script>
|