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