2022-11-15 17:14:10 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div px6 py2 flex="~ col gap6" text-lg>
|
|
|
|
<NuxtLink flex gap2 items-center to="/home">
|
|
|
|
<div i-ri:home-5-line />
|
|
|
|
<span>Home</span>
|
|
|
|
</NuxtLink>
|
|
|
|
<NuxtLink flex gap2 items-center to="/notifications">
|
|
|
|
<div i-ri:notification-4-line />
|
|
|
|
<span>Notifications</span>
|
|
|
|
</NuxtLink>
|
|
|
|
<NuxtLink flex gap2 items-center>
|
|
|
|
<div i-ri:hashtag />
|
|
|
|
<span>Explore</span>
|
|
|
|
</NuxtLink>
|
|
|
|
<NuxtLink flex gap2 items-center to="/public/local">
|
|
|
|
<div i-ri:group-2-line />
|
|
|
|
<span>Local</span>
|
|
|
|
</NuxtLink>
|
|
|
|
<NuxtLink flex gap2 items-center to="/public">
|
|
|
|
<div i-ri:earth-line />
|
|
|
|
<span>Federated</span>
|
|
|
|
</NuxtLink>
|
|
|
|
<NuxtLink flex gap2 items-center>
|
|
|
|
<div i-ri:at-line />
|
|
|
|
<span>Direct Messages</span>
|
|
|
|
</NuxtLink>
|
2022-11-15 21:21:39 +00:00
|
|
|
<NuxtLink flex gap2 items-center to="/favourites">
|
2022-11-15 17:14:10 +00:00
|
|
|
<div i-ri:heart-3-line />
|
|
|
|
<span>Favorites</span>
|
|
|
|
</NuxtLink>
|
2022-11-15 21:20:07 +00:00
|
|
|
<NuxtLink flex gap2 items-center to="/bookmarks">
|
|
|
|
<div i-ri:bookmark-line />
|
2022-11-15 17:14:10 +00:00
|
|
|
<span>Bookmarks</span>
|
|
|
|
</NuxtLink>
|
|
|
|
</div>
|
|
|
|
</template>
|
2022-11-16 21:05:19 +00:00
|
|
|
|
|
|
|
<style lang="postcss">
|
|
|
|
.router-link-active {
|
|
|
|
--at-apply: color-primary;
|
|
|
|
}
|
|
|
|
</style>
|