I changed the visuals of the documentation files, improved the appearance of the post page, modified the header of the profile view, and added a Feed view.

This commit is contained in:
PascalMarchesseault
2024-06-30 12:39:54 -04:00
parent 88f79fd4b3
commit c26a4ba148
7 changed files with 89 additions and 37 deletions

View File

@@ -19,7 +19,8 @@ import Profile from '../views/main/Profile.vue'
import ChloeBeaugrand from '../views/manualusers/ChloeProfile.vue'
import Leffet from '../views/manualusers/LeffetProfile.vue'
import MathieuCaron from '../views/manualusers/MathieuCaron.vue'
import Creator from "@/views/main/Creator.vue";
import Creator from "@/views/main/Creator.vue"
import Feed from '../views/main/Feed.vue';
const routes = [
{
@@ -131,6 +132,12 @@ const routes = [
name: 'wallet',
component: Wallet
},
{
path: '/feed',
name: 'feed',
component: Feed
},
]