mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 16:38:20 +01:00
24 lines
558 B
Vue
24 lines
558 B
Vue
<template>
|
|
<TimelineScroller>
|
|
<Home v-if="identity" />
|
|
<Public v-else />
|
|
</TimelineScroller>
|
|
</template>
|
|
|
|
<script setup lang="tsx">
|
|
import Home from "~/components/timelines/home.vue";
|
|
import Public from "~/components/timelines/public.vue";
|
|
import TimelineScroller from "~/components/timelines/timeline-scroller.vue";
|
|
import * as m from "~~/paraglide/messages.js";
|
|
|
|
useHead({
|
|
title: identity.value
|
|
? m.bland_chunky_sparrow_propel()
|
|
: m.lost_trick_dog_grace(),
|
|
});
|
|
|
|
definePageMeta({
|
|
layout: "app",
|
|
});
|
|
</script>
|