diff --git a/public/assets/passes/generic.png b/public/assets/passes/generic.png
new file mode 100644
index 0000000..05e24f1
Binary files /dev/null and b/public/assets/passes/generic.png differ
diff --git a/src/components/CardBoxGameStat.vue b/src/components/CardBoxGameStat.vue
index 1911bdb..5bf17b9 100644
--- a/src/components/CardBoxGameStat.vue
+++ b/src/components/CardBoxGameStat.vue
@@ -1,11 +1,13 @@
- 1234-5678 {{ dashCode(profile.extid) }}
- Last played at {{ last.arcade }} on 10/22/2022
+ Last played at {{ profile.last.arcade }} on
+ {{ profile.last.date }}
+
TRMAZI
- {{ profile.name }}
+
| Player | +Rival ID | ++ |
|---|---|---|
| TRMAZI | +1234-5678 | +
+ |
+
- Spinnin' since 2021 + Broken since 2021
404 - File not found
diff --git a/src/views/Game/GameView.vue b/src/views/Game/GameView.vue index 5b8ffc0..949c125 100644 --- a/src/views/Game/GameView.vue +++ b/src/views/Game/GameView.vue @@ -7,6 +7,7 @@ import SectionTitleLine from "@/components/SectionTitleLine.vue"; import GameTitleLine from "@/components/GameTitleLine.vue"; import LayoutAuthenticated from "@/layouts/LayoutAuthenticated.vue"; import CardBox from "@/components/CardBox.vue"; +import CardBoxWidget from "@/components/CardBoxWidget.vue"; import FormControl from "@/components/FormControl.vue"; import ProfileCard from "@/components/Cards/ProfileCard.vue"; import TablePlayers from "@/components/Tables/TablePlayers.vue"; @@ -21,9 +22,25 @@ const versionForm = reactive({ currentVersion: null, }); +const profile = { + id: 1, + name: "Trmazi", + extid: 12345678, + avatar: + "https://static.wikia.nocookie.net/dancedancerevolutionddr/images/3/3b/Yuni_img1.gif/", + last: { + arcade: "GhettoCade", + date: "7/16/2023", + }, +}; + gameID = $route.params.id; thisGame = getGameInfo(gameID); +if (!thisGame.versions) { + versionForm.currentVersion = 1; +} + if (!thisGame) { $router.push({ name: "ErrorPage", @@ -74,9 +91,18 @@ function getCardStyle() {
+
+