From 4dddc7973e274b472177ce807fb5c779b3f9113c Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Wed, 31 Aug 2022 16:46:18 +0200 Subject: [PATCH] feat: create the base blue banner --- src/assets/laptop.svg | 706 +++++++++++++++++++++++++++++++++++++ src/components/Banner2.vue | 203 +++++++++++ src/components/Home.vue | 2 + 3 files changed, 911 insertions(+) create mode 100644 src/assets/laptop.svg create mode 100644 src/components/Banner2.vue diff --git a/src/assets/laptop.svg b/src/assets/laptop.svg new file mode 100644 index 0000000..4d80f39 --- /dev/null +++ b/src/assets/laptop.svg @@ -0,0 +1,706 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/components/Banner2.vue b/src/components/Banner2.vue new file mode 100644 index 0000000..58f37f1 --- /dev/null +++ b/src/components/Banner2.vue @@ -0,0 +1,203 @@ + + + + + + diff --git a/src/components/Home.vue b/src/components/Home.vue index 48a7d9c..9e05070 100644 --- a/src/components/Home.vue +++ b/src/components/Home.vue @@ -50,10 +50,12 @@ import { Component, Vue } from 'vue-property-decorator'; import { Themes, Theme } from '@/model/themes'; import Banner1 from '@/components/Banner1.vue'; + import Banner2 from '@/components/Banner2.vue'; @Component({ components: { Banner1, + Banner2, }, }) export default class Home extends Vue {