frontend/pages/home.vue

16 lines
358 B
Vue
Raw Normal View History

<template>
2024-05-12 07:26:29 +02:00
<div class="mx-auto max-w-2xl w-full">
<TimelineScroller>
<Home />
</TimelineScroller>
2024-05-12 07:26:29 +02:00
</div>
</template>
<script setup lang="ts">
import Home from "~/components/timelines/home.vue";
import TimelineScroller from "~/components/timelines/timeline-scroller.vue";
definePageMeta({
layout: "app",
});
</script>