discord lander page

This commit is contained in:
stopflock
2026-07-04 11:23:57 -05:00
parent dafca17132
commit fb7c78977c
2 changed files with 51 additions and 0 deletions
+9
View File
@@ -183,6 +183,14 @@ const router = createRouter({
title: 'Blog Post | DeFlock'
}
},
{
path: '/discord',
name: 'discord',
component: () => import('../views/DiscordJoin.vue'),
meta: {
title: 'Join our Discord | DeFlock'
}
},
{
path: '/:pathMatch(.*)*',
name: 'not-found',
@@ -190,6 +198,7 @@ const router = createRouter({
meta: {
title: 'Not Found | DeFlock'
}
}
]
})