Skip to content
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

teerdays campaign page and dashboard initial design #52

Merged
merged 6 commits into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified assets/.DS_Store
Binary file not shown.
Binary file added assets/img/Investor Pitchdeck Q1 2025.pdf
Binary file not shown.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vite-svg-loader": "^5.1.0",
"vue": "^3.4.26",
"vue-router": "^4.3.2"
},
Expand Down
872 changes: 742 additions & 130 deletions pages/teerdays.vue

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions plugins/qrcode-reader.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import Vue from "vue";
import { defineNuxtPlugin } from "#app";
import { QrcodeStream } from "vue-qrcode-reader";

Vue.component("qrcode-stream", QrcodeStream);
export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.vueApp.component("qrcode-stream", QrcodeStream);
});
Binary file modified public/img/.DS_Store
Binary file not shown.
10 changes: 10 additions & 0 deletions public/img/index/TEERdays-icon-black.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions public/img/index/TEERdays-icon-gradient.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions public/img/index/TEERdays-icon-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions public/img/index/nova-wallet-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions public/img/index/polkadotjs-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions public/img/index/sub-wallet-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions public/img/index/talisman-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 7 additions & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [],
content: [
"./components/**/*.{vue,js}",
"./layouts/**/*.{vue,js}",
"./pages/**/*.{vue,js}",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}",
],
theme: {
extend: {
backgroundColor: {
Expand Down
12 changes: 12 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10386,6 +10386,7 @@ __metadata:
tailwindcss: "npm:^3.4.3"
typescript: "npm:^5.4.5"
vite: "npm:^5.2.10"
vite-svg-loader: "npm:^5.1.0"
vue: "npm:^3.4.26"
vue-qrcode: "npm:^2.2.2"
vue-qrcode-reader: "npm:^5.5.4"
Expand Down Expand Up @@ -14043,6 +14044,17 @@ __metadata:
languageName: node
linkType: hard

"vite-svg-loader@npm:^5.1.0":
version: 5.1.0
resolution: "vite-svg-loader@npm:5.1.0"
dependencies:
svgo: "npm:^3.0.2"
peerDependencies:
vue: ">=3.2.13"
checksum: 10c0/39f218db6384aec56ec6fb9517723eaee49701225688e1d5f5132f0730605a9e59201464911b19cbfdc647caebacf4c8737dffe2472cd815ebb6645c2292993c
languageName: node
linkType: hard

"vite@npm:^5.0.0, vite@npm:^5.2.10, vite@npm:^5.2.8":
version: 5.2.12
resolution: "vite@npm:5.2.12"
Expand Down
Loading