frontend/app/pages/index.vue

25 lines
610 B
Vue
Raw Normal View History

<template>
<TimelineScroller>
<Home v-if="authStore.isSignedIn" />
<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";
2025-07-16 07:48:39 +02:00
import * as m from "~~/paraglide/messages.js";
const authStore = useAuthStore();
useHead({
title: authStore.isSignedIn
? m.bland_chunky_sparrow_propel()
: m.lost_trick_dog_grace(),
});
definePageMeta({
layout: "app",
});
</script>