From 77597e80560866db6ad05549e8d5932b362952d6 Mon Sep 17 00:00:00 2001 From: Stefan Zermatten Date: Wed, 30 Nov 2022 15:37:28 +0200 Subject: [PATCH 1/2] Updated static pages, home, about, sign-in --- app/imports/client/ui/layouts/Sidebar.vue | 2 +- app/imports/client/ui/pages/About.vue | 6 +- app/imports/client/ui/pages/Home.vue | 163 +++++++++++++----- app/imports/client/ui/pages/SignIn.vue | 12 +- app/public/images/crown-dice-on-ipad.webp | Bin 0 -> 64912 bytes .../images/paper-dice-crown-with-candy.png | Bin 1080604 -> 0 bytes app/public/images/paper-dice-crown.png | Bin 595792 -> 0 bytes app/public/images/paper-dice-crown.webp | Bin 0 -> 15228 bytes app/public/images/screenshots/actions.webp | Bin 0 -> 13088 bytes app/public/images/screenshots/auditable.webp | Bin 0 -> 13386 bytes .../screenshots/automated-dice-rolls.webp | Bin 0 -> 13136 bytes .../images/screenshots/build-system.webp | Bin 0 -> 12176 bytes app/public/images/screenshots/inventory.webp | Bin 0 -> 11340 bytes .../screenshots/libraries-of-content.webp | Bin 0 -> 10380 bytes app/public/images/screenshots/printing.webp | Bin 0 -> 169988 bytes .../images/screenshots/send-to-discord.webp | Bin 0 -> 18676 bytes 16 files changed, 136 insertions(+), 47 deletions(-) create mode 100644 app/public/images/crown-dice-on-ipad.webp delete mode 100644 app/public/images/paper-dice-crown-with-candy.png delete mode 100644 app/public/images/paper-dice-crown.png create mode 100644 app/public/images/paper-dice-crown.webp create mode 100644 app/public/images/screenshots/actions.webp create mode 100644 app/public/images/screenshots/auditable.webp create mode 100644 app/public/images/screenshots/automated-dice-rolls.webp create mode 100644 app/public/images/screenshots/build-system.webp create mode 100644 app/public/images/screenshots/inventory.webp create mode 100644 app/public/images/screenshots/libraries-of-content.webp create mode 100644 app/public/images/screenshots/printing.webp create mode 100644 app/public/images/screenshots/send-to-discord.webp diff --git a/app/imports/client/ui/layouts/Sidebar.vue b/app/imports/client/ui/layouts/Sidebar.vue index cf450971..21d34e16 100644 --- a/app/imports/client/ui/layouts/Sidebar.vue +++ b/app/imports/client/ui/layouts/Sidebar.vue @@ -94,7 +94,7 @@ export default { let isLoggedIn = !!Meteor.userId(); let links = [ { title: 'Home', icon: 'mdi-home', to: '/' }, - { title: 'Characters', icon: 'mdi-account-group', to: '/characterList', requireLogin: true }, + { title: 'Characters', icon: 'mdi-account-group', to: '/character-list', requireLogin: true }, { title: 'Library', icon: 'mdi-library-shelves', to: '/library', requireLogin: true }, //{title: 'Tabletops', icon: 'api', to: '/tabletops', requireLogin: true}, //{title: 'Friends', icon: 'people', to: '/friends', requireLogin: true}, diff --git a/app/imports/client/ui/pages/About.vue b/app/imports/client/ui/pages/About.vue index e643dcd1..f71356bd 100644 --- a/app/imports/client/ui/pages/About.vue +++ b/app/imports/client/ui/pages/About.vue @@ -2,8 +2,8 @@

DiceCloud is a single-developer project started in 2014 with the aim of diff --git a/app/imports/client/ui/pages/Home.vue b/app/imports/client/ui/pages/Home.vue index 72642172..5e1f4f14 100644 --- a/app/imports/client/ui/pages/Home.vue +++ b/app/imports/client/ui/pages/Home.vue @@ -1,29 +1,75 @@