-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat/275 create about page #280
Conversation
…eat/275-create-about-page
src/router/index.ts
Outdated
const Learn = () => import("@/views/Learn.vue"); | ||
const Play = () => import("@/views/Play.vue"); | ||
const LearnPage = () => import("@/views/LearnPage.vue"); | ||
const Download = () => import("@/views/DownloadPage.vue"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be DownloadPage
src/router/index.ts
Outdated
const LearnPage = () => import("@/views/LearnPage.vue"); | ||
const Download = () => import("@/views/DownloadPage.vue"); | ||
|
||
const Community = () => import("@/views/About/CommunityPage.vue"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be CommunityPage
"AlexeyM#5409", | ||
"SRG0Z10", | ||
"Kolot#5637", | ||
"Midora", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe we should ask those guys if it is ok for them to appear on the page, maybe we should strip off the #1234
src/views/About/TeamPage.vue
Outdated
const items: { pic: any; name: string; desc: string }[] = [ | ||
{ pic: patrick, name: "Technical lead", desc: "Patrick" }, | ||
{ pic: anna, name: "Anna", desc: "Creative lead" }, | ||
{ pic: marius, name: "Marius", desc: "Game Design lead" }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change to game dev lead
src/views/About/TeamPage.vue
Outdated
import kosta from "@/assets/team/kosta.webp"; | ||
import benny from "@/assets/team/benny.webp"; | ||
import stefi from "@/assets/team/stefi.webp"; | ||
import noah from "@/assets/team/niko.webp"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be noah and not niko
can be merged after comments are addressed |
No description provided.