feat: Add home timeline for logged-in users

This commit is contained in:
Jesse Wierzbinski 2024-04-28 16:59:28 -10:00
parent 63cbe6bb82
commit 8c68957df8
No known key found for this signature in database
4 changed files with 56 additions and 1 deletions

9
pages/home.vue Normal file
View file

@ -0,0 +1,9 @@
<template>
<TimelinesHome />
</template>
<script setup lang="ts">
definePageMeta({
layout: "app",
});
</script>