refactor: ♻️ Reimplement Notes

This commit is contained in:
Jesse Wierzbinski 2024-11-30 02:19:32 +01:00
parent 9ced2c98e4
commit d29f181000
No known key found for this signature in database
21 changed files with 335 additions and 30 deletions

View file

@ -1,14 +1,12 @@
<template>
<div class="mx-auto max-w-2xl w-full">
<TimelineScroller>
<Greeting />
<Home />
</TimelineScroller>
</div>
</template>
<script setup lang="ts">
import Greeting from "~/components/headers/greeting.vue";
import Home from "~/components/timelines/home.vue";
import TimelineScroller from "~/components/timelines/timeline-scroller.vue";

View file

@ -1,7 +1,6 @@
<template>
<div class="mx-auto max-w-2xl w-full">
<TimelineScroller>
<Greeting />
<Local />
</TimelineScroller>
</div>
@ -9,7 +8,6 @@
<script lang="ts" setup>
import Greeting from "~/components/headers/greeting.vue";
import Local from "~/components/timelines/local.vue";
import TimelineScroller from "~/components/timelines/timeline-scroller.vue";

View file

@ -12,7 +12,6 @@
</button>
</div>
<TimelineScroller v-else>
<Greeting />
<div class="rounded overflow-hidden">
<Notifications />
</div>
@ -21,7 +20,6 @@
</template>
<script lang="ts" setup>
import Greeting from "~/components/headers/greeting.vue";
import Notifications from "~/components/timelines/notifications.vue";
import TimelineScroller from "~/components/timelines/timeline-scroller.vue";

View file

@ -1,14 +1,12 @@
<template>
<div class="mx-auto max-w-2xl w-full">
<TimelineScroller>
<Greeting />
<Public />
</TimelineScroller>
</div>
</template>
<script setup lang="ts">
import Greeting from "~/components/headers/greeting.vue";
import Public from "~/components/timelines/public.vue";
import TimelineScroller from "~/components/timelines/timeline-scroller.vue";