2024-04-15 03:16:57 +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>
|
|
|
|
|
<Greeting />
|
|
|
|
|
<Public />
|
|
|
|
|
</TimelineScroller>
|
2024-05-12 07:26:29 +02:00
|
|
|
</div>
|
2024-04-15 03:16:57 +02:00
|
|
|
</template>
|
|
|
|
|
|
2024-05-12 07:26:29 +02:00
|
|
|
|
2024-04-15 03:16:57 +02:00
|
|
|
<script setup lang="ts">
|
2024-06-21 04:09:09 +02:00
|
|
|
import Greeting from "~/components/headers/greeting.vue";
|
|
|
|
|
import Public from "~/components/timelines/public.vue";
|
|
|
|
|
import TimelineScroller from "~/components/timelines/timeline-scroller.vue";
|
|
|
|
|
|
2024-04-26 07:54:02 +02:00
|
|
|
definePageMeta({
|
|
|
|
|
layout: "app",
|
2024-04-15 03:16:57 +02:00
|
|
|
});
|
|
|
|
|
</script>
|