diff --git a/src/assets/img/express.png b/src/assets/img/express.png new file mode 100644 index 0000000..981a894 Binary files /dev/null and b/src/assets/img/express.png differ diff --git a/src/assets/img/node-icon.png b/src/assets/img/node-icon.png new file mode 100644 index 0000000..7472a84 Binary files /dev/null and b/src/assets/img/node-icon.png differ diff --git a/src/assets/img/node.png b/src/assets/img/node.png new file mode 100644 index 0000000..180d00e Binary files /dev/null and b/src/assets/img/node.png differ diff --git a/src/assets/img/ts.png b/src/assets/img/ts.png new file mode 100644 index 0000000..1f0b9c8 Binary files /dev/null and b/src/assets/img/ts.png differ diff --git a/src/assets/img/vue.png b/src/assets/img/vue.png new file mode 100644 index 0000000..60e1700 Binary files /dev/null and b/src/assets/img/vue.png differ diff --git a/src/assets/img/vuetify.svg b/src/assets/img/vuetify.svg new file mode 100644 index 0000000..3c20264 --- /dev/null +++ b/src/assets/img/vuetify.svg @@ -0,0 +1 @@ +Artboard 47 \ No newline at end of file diff --git a/src/components/About.vue b/src/components/About.vue index 6268928..09d9c71 100644 --- a/src/components/About.vue +++ b/src/components/About.vue @@ -39,14 +39,56 @@ If you discover any bugs or would like to have a feature being added, feel free to file an issue or contribute to this project.

Technologies

- + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{$vuetify.icons.transfer}} + + + + + +

diff --git a/src/components/ExternalLink.vue b/src/components/ExternalLink.vue index f5615e3..d979708 100644 --- a/src/components/ExternalLink.vue +++ b/src/components/ExternalLink.vue @@ -4,7 +4,8 @@ target="_blank" :title="title" > - {{icon || $vuetify.icons.arrowTopRight}} + + {{icon || $vuetify.icons.arrowTopRight}} {{text || href}} @@ -20,6 +21,7 @@ export default class ExternalLink extends Vue { @Prop() private href!: string; @Prop() private text?: string; @Prop() private icon?: string; + @Prop() private img?: string; } @@ -30,4 +32,9 @@ export default class ExternalLink extends Vue { line-height: inherit; } +img { + width: auto; + height: 1em; +} + diff --git a/src/plugins/vuetify.js b/src/plugins/vuetify.js index 79dea7a..2b18bc8 100644 --- a/src/plugins/vuetify.js +++ b/src/plugins/vuetify.js @@ -37,6 +37,7 @@ const icons = { email: 'far fa-envelope', home: 'fas fa-home', upload: 'fas fa-upload', + transfer: 'fas fa-exchange-alt', }; icons.keywords = icons.tags;