Added a for you page

This commit is contained in:
Dominic Villemure
2024-08-25 16:16:41 -04:00
parent 70b945de5f
commit e5891d888d
3 changed files with 103 additions and 1 deletions

View File

@@ -20,6 +20,7 @@ import ContentPage from "@/views/contents/ContentPage.vue";
import PostContent from "@/views/contents/PostContent.vue";
import Explorer from "@/views/explorer/explorer.vue";
import {useAuthStore} from "@/stores/authStore.js";
import ForYouPage from "@/views/profile/ForYouPage.vue";
const routes = [
{
@@ -130,6 +131,12 @@ const routes = [
component: Explorer,
},
{
path: '/feed',
name: 'feed',
component: ForYouPage,
},
]
const router = createRouter({