-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: ✨ Replaced the default homepage with the invite interface
- Loading branch information
Showing
26 changed files
with
351 additions
and
396 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,27 @@ | ||
import type { RouteRecordRaw } from 'vue-router'; | ||
|
||
const routes: Readonly<RouteRecordRaw[]> = [ | ||
{ | ||
path: '/i/:invite', | ||
name: 'invite', | ||
component: () => import('../views/Home.vue'), | ||
}, | ||
{ | ||
path: '/', | ||
name: 'home', | ||
component: () => import('../views/Home.vue'), | ||
}, | ||
// TODO: Remove this route after a few versions to allow users to get used to the new route | ||
{ | ||
path: '/j/:invite', | ||
name: 'invite', | ||
component: () => import('../views/Home.vue'), | ||
}, | ||
{ | ||
path: '/join', | ||
name: 'home', | ||
component: () => import('../views/Home.vue'), | ||
}, | ||
]; | ||
|
||
export default routes; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.