]> git.ipfire.org Git - thirdparty/vuejs/router.git/commitdiff
Docs: Update Free Weekend Vue School banner (#1566)
authorNico Devs <3766839+nicodevs@users.noreply.github.com>
Fri, 30 Sep 2022 19:01:39 +0000 (16:01 -0300)
committerGitHub <noreply@github.com>
Fri, 30 Sep 2022 19:01:39 +0000 (21:01 +0200)
12 files changed:
packages/docs/.vitepress/components/BannerTop.vue [new file with mode: 0644]
packages/docs/.vitepress/components/BannerTopCountdown.vue [moved from packages/docs/.vitepress/components/VueSchool/BannerCountdown.vue with 73% similarity]
packages/docs/.vitepress/components/BannerTopCountdownMobile.vue [moved from packages/docs/.vitepress/components/VueSchool/BannerCountdownMobile.vue with 68% similarity]
packages/docs/.vitepress/components/VueSchool/BannerTop.vue [deleted file]
packages/docs/.vitepress/theme/Layout.vue
packages/docs/.vitepress/theme/banner-top.css [new file with mode: 0644]
packages/docs/public/images/vueschool/bg-desktop.svg [deleted file]
packages/docs/public/images/vueschool/bg-mobile.png [deleted file]
packages/docs/public/images/vueschool/bg-tablet.svg [deleted file]
packages/docs/public/images/vueschool/close.svg [deleted file]
packages/docs/public/images/vueschool/vs-iso.svg [deleted file]
packages/docs/public/images/vueschool/vs-logo.svg [deleted file]

diff --git a/packages/docs/.vitepress/components/BannerTop.vue b/packages/docs/.vitepress/components/BannerTop.vue
new file mode 100644 (file)
index 0000000..7975f1a
--- /dev/null
@@ -0,0 +1,397 @@
+<template>
+  <a
+    id="vs-top"
+    v-if="isVisible"
+    :href="`https://vueschool.io${activeBanner.link}?friend=vuerouter&utm_source=vuerouter&utm_medium=website&utm_campaign=affiliate&utm_content=top_banner`"
+    :class="activeBanner.assets">
+    <div class="vs-background-wrapper">
+      <div class="vs-logo" />
+      <div class="vs-core">
+        <div class="vs-slogan-wrapper">
+          <div class="vs-slogan" v-html="activeBanner.title" />
+          <div class="vs-subline" v-html="activeBanner.subtitle" />
+          <BannerTopCountdownMobile
+            v-if="activePhase.hasCountdown"
+            v-bind="{ remaining: activePhase.remaining, countdownTransformDaysToHours }" />
+        </div>
+        <BannerTopCountdown
+          v-if="activePhase.hasCountdown"
+          v-bind="{ remaining: activePhase.remaining, countdownTransformDaysToHours }" />
+        <div class="vs-button-wrapper">
+          <div class="vs-button">
+            {{ activeBanner.cta }}
+          </div>
+        </div>
+      </div>
+      <div
+        class="vs-close"
+        @click.prevent.stop="close">
+        <img src="https://vueschool.io/images/close.svg" alt="Close">
+      </div>
+    </div>
+  </a>
+</template>
+
+<script>
+import BannerTopCountdown from './BannerTopCountdown.vue'
+import BannerTopCountdownMobile from './BannerTopCountdownMobile.vue'
+
+const phases = [
+  {
+    banner: {
+      assets: "FREE_WEEKEND",
+      cta: "JOIN FOR FREE",
+      link: "/free-weekend",
+      static: "FREE_WEEKEND",
+      subtitle: "Get Access to ALL Vue School premium courses",
+      title: "Free Weekend 1st & 2nd of October"
+    },
+    ends: "2022-09-30T23:59:59+02:00",
+    hasCountdown: false,
+    id: "FREE_WEEKEND_LOBBY",
+    isExtended: false
+  },
+  {
+    banner: {
+      assets: "FREE_WEEKEND",
+      cta: "WATCH FOR FREE",
+      link: "/free-weekend",
+      static: "FREE_WEEKEND_LIVE",
+      subtitle: "Get Access to ALL Vue School premium courses",
+      title: "Free Weekend <strong>NOW LIVE</strong>"
+    },
+    ends: "2022-10-02T23:59:59+02:00",
+    hasCountdown: false,
+    id: "FREE_WEEKEND_LIVE",
+    isExtended: false
+  },
+  {
+    banner: {
+      assets: "LEVELUP2022",
+      cta: "GET OFFER",
+      link: "/sales/levelup2022",
+      static: "LEVELUP2022",
+      subtitle: "Access 800+ lessons including the Vue.js 3 Masterclass",
+      title: "<strong>Get 45%</strong> off at Vue School today"
+    },
+    ends: "2022-10-04T23:59:59+02:00",
+    hasCountdown: true,
+    id: "LEVELUP2022",
+    isExtended: false
+  },
+  {
+    banner: {
+      assets: "LEVELUP2022",
+      cta: "GET OFFER",
+      link: "/sales/levelup2022",
+      static: "LEVELUP2022",
+      subtitle: "Extended! Access 800+ lessons including the Vue.js 3 Masterclass",
+      title: "<strong>Get 45%</strong> off at Vue School today"
+    },
+    ends: "2022-10-06T23:59:59+02:00",
+    hasCountdown: true,
+    id: "LEVELUP2022_EXTENDED",
+    isExtended: true
+  }
+]
+
+export default {
+  components: {
+    BannerTopCountdown,
+    BannerTopCountdownMobile
+  },
+  data () {
+    const now = new Date()
+    return {
+      isVisible: false,
+      now
+    }
+  },
+  computed: {
+    phases () {
+      return phases.map(phase => ({ ...phase, remaining: new Date(phase.ends) - this.now }))
+    },
+    activePhase () {
+      return this.phases.find(phase => phase.remaining > 0)
+    },
+    activeBanner () {
+      return this.activePhase.banner
+    }
+  },
+  mounted () {
+    this.isVisible = !localStorage.getItem('VS_FREE_WEEKEND') && Boolean(this.activePhase)
+    if (this.isVisible) document.body.classList.add('has-top-banner')
+  },
+  methods: {
+    countdownTransformDaysToHours (props) {
+      if (props.days) {
+        props.hours = props.hours + (props.days * 24)
+        props.days = 0
+      }
+
+      Object.entries(props).forEach(([key, value]) => {
+        const digits = value < 10 ? `0${value}` : value
+        props[key] = digits
+      })
+      return props
+    },
+    close () {
+      this.isVisible = false
+      document.body.classList.remove('has-top-banner')
+      localStorage.setItem('VS_FREE_WEEKEND', 1)
+    }
+  }
+}
+</script>
+
+<style>
+#vs-top {
+  display: block;
+  box-sizing: border-box;
+  height: 72px;
+  position: fixed;
+  top: 0;
+  left: 0;
+  right: 0;
+  z-index: 100;
+}
+
+#vs-top .vs-background-wrapper {
+  align-items: center;
+  justify-content: center;
+  display: flex;
+  padding: 0 10px;
+  height: 100%;
+  width: 100%;
+}
+
+#vs-top:hover {
+  text-decoration: none;
+}
+
+#vs-top:hover .vs-core .vs-button {
+  background-image: linear-gradient(to bottom, #5ccc45, #419E2D), linear-gradient(to bottom, #388f26, #50b83b);
+}
+
+#vs-top .vs-logo {
+  position: absolute;
+  left: 10px;
+  width: 36px;
+  height: 42px;
+  background-size: contain;
+  background-position: center;
+  background-repeat: no-repeat;
+}
+
+#vs-top .vs-core {
+  display: flex;
+  align-items: center;
+  width: 288px;
+}
+
+#vs-top .vs-core .vs-slogan-wrapper {
+  text-align: center;
+  width: 184px;
+  margin: 0 auto;
+}
+
+#vs-top .vs-core .vs-slogan {
+  font-weight: bold;
+  font-size: 12px;
+  font-family: 'Roboto', Arial, sans-serif;
+}
+
+#vs-top .vs-core .vs-subline {
+  font-size: 10px;
+  font-family: 'Roboto', Arial, sans-serif;
+  text-align: center;
+}
+
+#vs-top .vs-core .vs-button-wrapper {
+  padding: 2px;
+  background-image: linear-gradient(to bottom, #388f26, #50b83b);
+  border-radius: 60px;
+  overflow: hidden;
+}
+
+#vs-top .vs-core .vs-button {
+  border-radius: 60px;
+  color: #FFF;
+  padding: 8px 6px;
+  background-image: linear-gradient(to bottom, #5ccc45, #368c24), linear-gradient(to bottom, #388f26, #50b83b);
+  font-weight: bold;
+  text-transform: uppercase;
+  text-align: center;
+  font-size: 10px;
+  letter-spacing: 0.3px;
+  white-space: nowrap;
+}
+
+#vs-top .vs-close {
+  right: 0;
+  position: absolute;
+  padding: 10px;
+}
+
+#vs-top .vs-close:hover {
+  color: #56d8ff;
+}
+
+@media (min-width: 680px) {
+  #vs-top .vs-core {
+    width: auto;
+  }
+
+  #vs-top .vs-core .vs-slogan-wrapper {
+    margin: 0 12px 0 0;
+    width: 268px;
+  }
+
+  #vs-top .vs-core .vs-slogan {
+    font-size: 17px;
+  }
+
+  #vs-top .vs-core .vs-subline {
+    font-size: 12px;
+    margin-top: 4px;
+  }
+
+  #vs-top .vs-core .vs-button {
+    font-size: 13px;
+    padding: 8px 15px;
+  }
+}
+
+@media (min-width: 1280px) {
+  #vs-top .vs-logo {
+    left: 20px;
+    width: 104px;
+  }
+
+  #vs-top .vs-core {
+    margin-right: 0;
+  }
+
+  #vs-top .vs-core .vs-slogan-wrapper {
+    width: auto;
+  }
+
+  #vs-top .vs-core .vs-subline {
+    font-size: 15px;
+  }
+}
+
+/* FREE_WEEKEND
+******************************************/
+
+#vs-top.FREE_WEEKEND {
+  color: #FFF;
+  background: linear-gradient(to left, #161a35, #283065);
+}
+
+#vs-top.FREE_WEEKEND .vs-logo {
+  background-image: url(https://vueschool.io/images/mark-vueschool-white.svg);
+}
+
+#vs-top.FREE_WEEKEND .vs-core .vs-slogan {
+  color: #fff;
+}
+
+#vs-top.FREE_WEEKEND .vs-core .vs-slogan strong {
+  color: #ff2556;
+}
+
+#vs-top.FREE_WEEKEND .vs-core .vs-subline {
+  color: #c6cdf7;
+}
+
+#vs-top.FREE_WEEKEND .vs-background-wrapper {
+  background-image: url(https://vueschool.io/images/banners/assets/FREE_WEEKEND/bg-mobile.png);
+  background-repeat: no-repeat;
+  background-size: cover;
+  background-position: top right;
+}
+
+@media (min-width: 680px) {
+  #vs-top.FREE_WEEKEND .vs-background-wrapper {
+    background-image: url(https://vueschool.io/images/banners/assets/FREE_WEEKEND/bg-tablet.svg);
+  }
+}
+
+@media (min-width: 1280px) {
+  #vs-top.FREE_WEEKEND .vs-logo {
+    background-image: url(https://vueschool.io/images/icons/logo-white.svg);
+  }
+
+  #vs-top.FREE_WEEKEND .vs-background-wrapper {
+    background-image: url(https://vueschool.io/images/banners/assets/FREE_WEEKEND/bg-desktop.svg);
+    background-position: top right -60px;
+  }
+}
+
+/* LEVELUP2022
+******************************************/
+
+#vs-top.LEVELUP2022 {
+  color: #121733;
+  background: #EEF5FF;
+}
+
+#vs-top.LEVELUP2022 .vs-logo {
+  background-image: url(https://vueschool.io/images/mark-vueschool.svg);
+}
+
+#vs-top.LEVELUP2022 .vs-core .vs-slogan {
+  color: #121733;
+}
+
+#vs-top.LEVELUP2022 .vs-core .vs-slogan strong {
+  color: #48aa34;
+}
+
+#vs-top.LEVELUP2022 .vs-core .vs-subline {
+  color: #394170;
+}
+
+#vs-top.LEVELUP2022 .vs-core .vs-subline strong {
+  color: #48aa34;
+}
+
+#vs-top.LEVELUP2022 .vs-background-wrapper {
+  background-image: url(https://vueschool.io/images/banners/assets/LEVELUP2022/bg-mobile.png);
+  background-repeat: no-repeat;
+  background-size: cover;
+  background-position: top right;
+}
+
+@media (min-width: 680px) {
+  #vs-top.LEVELUP2022 .vs-background-wrapper {
+    background-image: url(https://vueschool.io/images/banners/assets/LEVELUP2022/bg-tablet.png);
+  }
+}
+
+@media (min-width: 1280px) {
+  #vs-top.LEVELUP2022 .vs-logo {
+    background-image: url(https://vueschool.io/images/icons/logo.svg);
+  }
+
+  #vs-top.LEVELUP2022 .vs-background-wrapper {
+    background-image:
+      url(https://vueschool.io/images/banners/assets/LEVELUP2022/bg-desktop-left.png),
+      url(https://vueschool.io/images/banners/assets/LEVELUP2022/bg-desktop-right.png);
+    background-position:
+      top left -120px,
+      top right -120px;
+    background-size: contain;
+    background-repeat: no-repeat;
+  }
+}
+
+@media (min-width: 1536px) {
+  #vs-top.LEVELUP2022 .vs-background-wrapper {
+    background-position:
+      top left,
+      top right;
+  }
+}
+</style>
similarity index 73%
rename from packages/docs/.vitepress/components/VueSchool/BannerCountdown.vue
rename to packages/docs/.vitepress/components/BannerTopCountdown.vue
index 5fc6765e3620d6d0b412bc123d1524817607dde9..322ed2d0678c3b202abb1f3cfde5872896ef8fc6 100644 (file)
@@ -1,17 +1,19 @@
 <template>
   <ClientOnly>
     <VueCountdown
-      v-if="remaining"
+      v-if="remaining && remaining > 0"
       :time="remaining"
-      :transform="countdownTransform"
+      :transform="countdownTransformDaysToHours"
       v-slot="data"
-      class="vs-countdown-wrapper">
+      class="vs-countdown-wrapper"
+      :style="{ color }">
       <div
         v-for="part in ['days', 'hours', 'minutes', 'seconds'].filter(part => part !== 'days' || data[part] !== '00')"
         :key="part"
         class="vs-countdown-item">
         <div
-          class="vs-countdown-part">
+          class="vs-countdown-part"
+          :style="{ background }">
           <div class="vs-countdown-number">
             {{ data[part] }}
           </div>
 <script>
 import VueCountdown from '@chenfengyuan/vue-countdown'
 
-const countdownTransform = (props) => {
-  Object.entries(props).forEach(([key, value]) => {
-    const digits = value < 10 ? `0${value}` : value
-    props[key] = digits
-  })
-  return props
-}
-
 export default {
   components: {
     VueCountdown
@@ -48,24 +42,29 @@ export default {
     remaining: {
       type: Number,
       default: 0
+    },
+    color: {
+      type: String,
+      default: '#ff2556'
+    },
+    background: {
+      type: String,
+      default: 'rgba(255, 37, 86, 0.25)'
+    },
+    countdownTransformDaysToHours: {
+      type: Function,
+      required: true
     }
-  },
-  computed: {
-    isVisible () {
-      return this.remaining > 0
-    }
-  },
-  methods: {
-    countdownTransform
   }
 }
 </script>
 
 <style>
 .vs-countdown-wrapper {
+  font-family: 'Roboto', Arial, sans-serif;
   align-items: center;
   gap: 4px;
-  margin-right: 32px;
+  margin-right: 12px;
   line-height: 1;
   display: none;
 }
@@ -77,10 +76,8 @@ export default {
 }
 
 .vs-countdown-wrapper .vs-countdown-part {
-  background: rgba(68, 249, 137, 0.5);
   border-radius: 2px;
   padding: 4px 0;
-  color: #44F989;
   text-align: center;
   width: 42px;
 }
@@ -97,7 +94,6 @@ export default {
 }
 
 .vs-countdown-colon {
-  color: #44F989;
   font-weight: bold;
 }
 
@@ -106,4 +102,4 @@ export default {
     display: flex;
   }
 }
-</style>
\ No newline at end of file
+</style>
similarity index 68%
rename from packages/docs/.vitepress/components/VueSchool/BannerCountdownMobile.vue
rename to packages/docs/.vitepress/components/BannerTopCountdownMobile.vue
index bad4b94027004f2847df8203855ac41455e07797..3f82934e43763426a4dede8ceb04a1e463f2ed4b 100644 (file)
@@ -1,10 +1,12 @@
 <template>
   <ClientOnly>
     <VueCountdown
-      v-if="remaining"
+      v-if="remaining && remaining > 0"
       :time="remaining"
+      :transform="countdownTransformDaysToHours"
       v-slot="data"
-      class="vs-countdown-mobile-wrapper">
+      class="vs-countdown-mobile-wrapper"
+      :style="{ color }">
       <span
         v-for="part in ['days', 'hours', 'minutes', 'seconds']"
         :key="part">
 <script>
 import VueCountdown from '@chenfengyuan/vue-countdown'
 
-const countdownTransform = (props) => {
-  Object.entries(props).forEach(([key, value]) => {
-    const digits = value < 10 ? `0${value}` : value
-    props[key] = digits
-  })
-  return props
-}
-
 export default {
   components: {
     VueCountdown
@@ -37,11 +31,14 @@ export default {
     remaining: {
       type: Number,
       default: 0
-    }
-  },
-  computed: {
-    isVisible () {
-      return this.remaining > 0
+    },
+    color: {
+      type: String,
+      default: '#ff2556'
+    },
+    countdownTransformDaysToHours: {
+      type: Function,
+      required: true
     }
   }
 }
@@ -49,8 +46,8 @@ export default {
 
 <style>
 .vs-countdown-mobile-wrapper {
+  font-family: 'Roboto', sans-serif;
   display: block;
-  color: #40f98a;
   text-align: center;
   font-weight: bold;
   font-size: 12px;
@@ -61,4 +58,4 @@ export default {
     display: none;
   }
 }
-</style>
\ No newline at end of file
+</style>
diff --git a/packages/docs/.vitepress/components/VueSchool/BannerTop.vue b/packages/docs/.vitepress/components/VueSchool/BannerTop.vue
deleted file mode 100644 (file)
index 9c69335..0000000
+++ /dev/null
@@ -1,253 +0,0 @@
-<template>
-  <a
-    v-if="isVisible"
-    id="vs"
-    href="https://vueschool.io/free-weekend?friend=vuerouter&utm_source=vuerouter&utm_medium=website&utm_campaign=affiliate&utm_content=top_banner"
-    target="_blank"
-    rel="noreferrer">
-    <div
-      class="vs-background-wrapper">
-      <div class="vs-logo">
-        <img src="/images/vueschool/vs-iso.svg" class="logo-small">
-        <img src="/images/vueschool/vs-logo.svg" class="logo-big">
-      </div>
-      <div class="vs-core">
-        <div class="vs-slogan-wrapper">
-          <div class="vs-slogan">
-            Free Weekend 1st & 2nd of October
-          </div>
-          <div class="vs-subline">
-            Get Access to ALL Vue School premium courses
-          </div>
-        </div>
-        <div class="vs-button-wrapper">
-          <div class="vs-button">
-            Book my spot
-          </div>
-        </div>
-      </div>
-      <div
-        id="vs-close"
-        class="vs-close"
-        @click.stop.prevent="close">
-        <img src="/images/vueschool/close.svg" alt="Close">
-      </div>
-    </div>
-  </a>
-</template>
-
-<script>
-export default {
-  data () {
-    return {
-      isVisible: false,
-      isActive: null,
-      remaining: 0
-    }
-  },
-  mounted () {
-    const now = new Date()
-    const end = new Date('2022-10-07T00:00:00+02:00')
-    this.isActive = now < end
-    this.remaining = end - now
-    this.isVisible = !localStorage.getItem('VS_FREE_WEEKEND') && this.remaining > 0
-    if (this.isVisible) document.body.classList.add('has-top-banner')
-  },
-  methods: {
-    close () {
-      this.isVisible = false
-      document.body.classList.remove('has-top-banner')
-      localStorage.setItem('VS_FREE_WEEKEND', 1)
-    }
-  }
-}
-</script>
-
-<style>
-@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
-
-#vs {
-  background-color: #0A1124;
-  box-sizing: border-box;
-  color: #fff;
-  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
-  position: fixed;
-  left: 0;
-  right: 0;
-  top: 0;
-  z-index: 100;
-  height: 72px;
-  background: linear-gradient(to left, #161a35, #283065);
-}
-
-#vs .vs-background-wrapper {
-  align-items: center;
-  justify-content: center;
-  display: flex;
-  padding: 0 10px;
-  height: 100%;
-  width: 100%;
-  background-image: url(/images/vueschool/bg-mobile.png);
-  background-repeat: no-repeat;
-  background-size: cover;
-  background-position: top right;
-}
-
-#vs:hover {
-  text-decoration: none;
-}
-
-#vs:hover .vs-core .vs-button {
-  background-image: linear-gradient(to bottom, #5ccc45, #419E2D), linear-gradient(to bottom, #388f26, #50b83b);
-}
-
-#vs .vs-logo {
-  position: absolute;
-  left: 10px;
-}
-
-#vs .vs-logo .logo-big {
-  display: none;
-}
-
-#vs .vs-core {
-  display: flex;
-  align-items: center;
-  width: 288px;
-}
-
-#vs .vs-core .vs-slogan-wrapper {
-  text-align: center;
-  width: 170px;
-  margin: 0 auto;
-}
-
-#vs .vs-core .vs-slogan {
-  color: #fff;
-  font-weight: bold;
-  font-size: 10px;
-}
-
-#vs .vs-core .vs-subline {
-  color: #c6cdf7;
-  font-size: 10px;
-  margin-top: 4px;
-}
-
-#vs .vs-core .vs-button-wrapper {
-  padding: 2px;
-  background-image: linear-gradient(to bottom, #388f26, #50b83b);
-  border-radius: 60px;
-  overflow: hidden;
-}
-
-#vs .vs-core .vs-button {
-  border-radius: 60px;
-  color: #FFF;
-  padding: 8px 6px;
-  background-image: linear-gradient(to bottom, #5ccc45, #368c24), linear-gradient(to bottom, #388f26, #50b83b);
-  font-weight: bold;
-  text-transform: uppercase;
-  text-align: center;
-  font-size: 10px;
-  letter-spacing: 0.3px;
-  white-space: nowrap;
-}
-
-#vs .vs-close {
-  right: 0;
-  position: absolute;
-  padding: 10px;
-}
-
-#vs .vs-close:hover {
-  color: #56d8ff;
-}
-
-@media (min-width: 680px) {
-  #vs .vs-background-wrapper {
-    background-image: url(/images/vueschool/bg-tablet.svg);
-  }
-
-  #vs .vs-logo {
-    left: 20px;
-  }
-
-  #vs .vs-logo .logo-small {
-    display: none;
-  }
-
-  #vs .vs-logo .logo-big {
-    display: inline-block;
-    width: 90px;
-  }
-
-  #vs .vs-core {
-    width: auto;
-    margin-right: -60px;
-  }
-
-  #vs .vs-core .vs-slogan-wrapper {
-    margin: 0 12px 0 0;
-    width: auto;
-  }
-
-  #vs .vs-core .vs-slogan {
-    font-size: 16px;
-  }
-
-  #vs .vs-core .vs-subline {
-    font-size: 15px;
-    text-align: left;
-  }
-
-  #vs .vs-core .vs-button {
-    font-size: 13px;
-    padding: 8px 15px;
-  }
-
-  #vs .vs-close {
-    right: 20px;
-  }
-}
-
-@media (min-width: 900px) {
-  #vs .vs-background-wrapper {
-    background-image: url(/images/vueschool/bg-desktop.svg);
-    background-position: top right -300px;
-  }
-
-  #vs .vs-logo .logo-big {
-    display: inline-block;
-    width: auto;
-  }
-
-  #vs .vs-core {
-    margin-right: 0;
-  }
-}
-
-@media (min-width: 1280px) {
-  #vs .vs-background-wrapper {
-    background-position: top right;
-  }
-}
-
-/************************************/
-
-.has-top-banner {
-  margin-top: 72px;
-}
-
-.has-top-banner .nav-bar {
-  margin-top: 72px;
-}
-
-.has-top-banner .sidebar {
-  margin-top: 72px;
-}
-
-.has-top-banner .page {
-  margin-top: 72px;
-}
-</style>
index eeebfc4264fb96a07402aec17914e2dd58270a17..78a46f18e85e68ce62ac0711031bf55f5586de40 100644 (file)
@@ -51,8 +51,9 @@
 import { defineAsyncComponent } from 'vue'
 import DefaultTheme from 'vitepress/dist/client/theme-default'
 import sponsors from '../components/sponsors.json'
+import './banner-top.css'
 
-const BannerTop = defineAsyncComponent(() => import('../components/VueSchool/BannerTop.vue'))
+const BannerTop = defineAsyncComponent(() => import('../components/BannerTop.vue'))
 
 export default {
   name: 'Layout',
diff --git a/packages/docs/.vitepress/theme/banner-top.css b/packages/docs/.vitepress/theme/banner-top.css
new file mode 100644 (file)
index 0000000..c71ea83
--- /dev/null
@@ -0,0 +1,6 @@
+.has-top-banner,
+.has-top-banner .nav-bar,
+.has-top-banner .sidebar,
+.has-top-banner .page {
+  margin-top: 72px;
+}
\ No newline at end of file
diff --git a/packages/docs/public/images/vueschool/bg-desktop.svg b/packages/docs/public/images/vueschool/bg-desktop.svg
deleted file mode 100644 (file)
index a05fbd8..0000000
+++ /dev/null
@@ -1,253 +0,0 @@
-<svg width="1600" height="72" viewBox="0 0 1600 72" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-    <defs>
-        <linearGradient x1="89.414%" y1="61.013%" x2="12.037%" y2="61.013%" id="d482newe7b">
-            <stop stop-color="#282F64" offset="0%"/>
-            <stop stop-color="#191E3F" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="89.414%" y1="61.013%" x2="12.037%" y2="61.013%" id="d99hf5iw4d">
-            <stop stop-color="#2E3570" offset="0%"/>
-            <stop stop-color="#191E3F" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="89.414%" y1="61.013%" x2="12.037%" y2="61.013%" id="ev27gpsgke">
-            <stop stop-color="#2E3570" offset="0%"/>
-            <stop stop-color="#191E3F" stop-opacity="0" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="saa7qmgvhg">
-            <stop stop-color="#403F9F" stop-opacity="0" offset="0%"/>
-            <stop stop-opacity=".2" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="0%" y1="32.091%" x2="100%" y2="67.909%" id="ce5gxpf76i">
-            <stop stop-opacity=".3" offset="0%"/>
-            <stop stop-color="#1F1845" stop-opacity="0" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="le5mg3xf6k">
-            <stop stop-color="#FFC62C" stop-opacity="0" offset="0%"/>
-            <stop stop-color="#FF6663" stop-opacity=".3" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="06rcssgl7m">
-            <stop stop-color="#A7A7EE" stop-opacity="0" offset="0%"/>
-            <stop stop-color="#4C55A0" stop-opacity=".2" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="7q9jn06kho">
-            <stop stop-color="#A7A7EE" stop-opacity="0" offset="0%"/>
-            <stop stop-color="#4C55A0" stop-opacity=".2" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="ezcb32jf6q">
-            <stop stop-color="#403F9F" stop-opacity="0" offset="0%"/>
-            <stop stop-opacity=".2" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="txlzgcqvys">
-            <stop stop-color="#FFC62C" stop-opacity="0" offset="0%"/>
-            <stop stop-color="#FF6663" stop-opacity=".3" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="98.428%" y1="50%" x2="1.572%" y2="100%" id="ufuctnxgnt">
-            <stop stop-opacity=".2" offset="0%"/>
-            <stop stop-color="#FFC42C" stop-opacity="0" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="lrpq226fxv">
-            <stop stop-color="#403F9F" stop-opacity="0" offset="0%"/>
-            <stop stop-opacity=".2" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="2hrf3zwz1x">
-            <stop stop-color="#FFC62C" stop-opacity="0" offset="0%"/>
-            <stop stop-color="#FF6663" stop-opacity=".3" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="100%" y1="38.311%" x2="0%" y2="61.689%" id="zw29mcq42y">
-            <stop stop-opacity=".15" offset="0%"/>
-            <stop stop-color="#FFC42C" stop-opacity="0" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="ug2qg3glsA">
-            <stop stop-color="#FFC62C" stop-opacity="0" offset="0%"/>
-            <stop stop-color="#FF6663" stop-opacity=".3" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="76.207%" y1="4.524%" x2="5.77%" y2="136.106%" id="qs3xaqlfhB">
-            <stop stop-color="#F3ECD7" offset="0%"/>
-            <stop stop-color="#FFD24B" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="pclbq5xneC">
-            <stop stop-color="#52C761" offset="0%"/>
-            <stop stop-color="#51A256" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="2gwsduzgaD">
-            <stop stop-color="#FFE56C" offset="0%"/>
-            <stop stop-color="#FFC73A" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="5r2vls0e8E">
-            <stop stop-color="#89E99B" offset="0%"/>
-            <stop stop-color="#53CE63" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="pfjfs4qvjF">
-            <stop stop-color="#51C861" offset="0%"/>
-            <stop stop-color="#51A256" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="gq2p1x81pG">
-            <stop stop-color="#D2A732" offset="0%"/>
-            <stop stop-color="#A17C1D" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="cyjvslt1sI">
-            <stop stop-color="#348B70" offset="0%"/>
-            <stop stop-color="#288384" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="84.661%" y1="26.487%" x2="50%" y2="58.486%" id="6x10eg2iiH">
-            <stop stop-color="#52D5B3" offset="0%"/>
-            <stop stop-color="#2F8977" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="34.164%" y1="4.57%" x2="101.204%" y2="265.256%" id="c1596p1blJ">
-            <stop stop-color="#DEFFF0" offset="0%"/>
-            <stop stop-color="#3EAF7D" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="24.492%" y1="9.15%" x2="58.635%" y2="100%" id="nryep7r8dK">
-            <stop stop-color="#263E7B" offset="0%"/>
-            <stop stop-color="#253867" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="101.462%" y1="124.814%" x2="19.296%" y2="50%" id="2s4xkdxeqN">
-            <stop stop-color="#243B74" offset="0%"/>
-            <stop stop-color="#2357BD" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="69.68%" y1="5.498%" x2="24.256%" y2="96.98%" id="9qa78t1wxO">
-            <stop stop-color="#0075C4" offset="0%"/>
-            <stop stop-color="#005F9F" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="7812l4nxyQ">
-            <stop stop-color="#348B70" offset="0%"/>
-            <stop stop-color="#288384" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="84.661%" y1="26.487%" x2="50%" y2="58.486%" id="1zyyvdzupP">
-            <stop stop-color="#52D5B3" offset="0%"/>
-            <stop stop-color="#2F8977" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="34.164%" y1="4.57%" x2="82.543%" y2="143.256%" id="68oz963z5R">
-            <stop stop-color="#E2FFF2" offset="0%"/>
-            <stop stop-color="#3EAF7D" offset="100%"/>
-        </linearGradient>
-        <path id="qtgw17kl6a" d="M0 0h1600v72H0z"/>
-        <path d="M10.623 44.566c-7.19-5.77-13.431-18.727-9.295-31.037 4.085-12.22 18.46-17.497 29.61-10.213 10.98 7.358 11.03 14.663 26.292 17.906 15.16 3.305 20.9 23.4 6.905 31.037-14.108 7.764-46.326-1.938-53.512-7.693z" id="sxlwjl92ff"/>
-        <path d="M62.944 52.854c-11.35 5.147-32.317.706-44.44-4.16-3.082-2.792-6.093-6.098-8.944-9.964-5.085-6.8-5.75-13.432-1.991-19.896h22.706c4.497 3.822 8.17 6.563 11.021 8.224 4.36 2.422 17.316 4.66 22.042 9.948 3.955 4.485 2.801 10.893-.394 15.848z" id="hdrilhddah"/>
-        <path d="M8.233 47.219c-3.551-.35-5.543-1.279-5.976-2.786-.619-2.295-2.853-4.867-2.124-5.836.824-.885 1.978 2.062 2.655 2.388.896.359.518-9.696 3.851-7.163 3.334 2.616 2.558 4.848 2.125 7.826a84.416 84.416 0 0 0-.531 5.57z" id="ow1x3npuoj"/>
-        <path d="M37.445 37.138c-6.631 0-28.923 4.929-30.142 5.173-1.274.294-1.866 3.545 0 4.642 1.81 1.18 24.636.684 26.026.663 1.484.021 10.805-10.478 4.116-10.478z" id="22c0oozldl"/>
-        <path d="M37.445 37.138h37.578c3.657 0 2.67 5.637 0 5.704-1.761-.012-23.104 3.171-23.104 4.244 0 .715.885 6.109 2.655 16.182l-17.129 2.785c-4.68-6.876-8.365-12.476-8.365-17.375 0-4.9 1.936-11.54 8.365-11.54z" id="9j5y2nnz4n"/>
-        <path d="M38.64 67.512c-1.887 4.96-2.348 13.133 0 16.314 2.33 3.2 15.092 18.299 16.997 19.233 1.903.996 4.78-1.203 4.78-3.316 0-2.157-6.58-14.599-11.685-19.63-5.108-4.866-8.223-17.409-10.092-12.601z" id="sx3yrisb7p"/>
-        <path d="M20.98 71.756c.997 5.395 9.097 8.755 24.3 10.08 1.033-.123 1.785-.742 2.257-1.856.83-1.731.843-3.01.797-3.05 8.338.04 11.748-10.553 6.108-16.978-5.568-6.348-34.772 3.668-33.462 11.804z" id="5hs00ybdgu"/>
-        <path d="M50.06 18.834c2.971.053 4.21 1.335 3.718 3.847-.47 2.827-1.5 5.463-3.851 5.173-2.551 4.684-5.653 7.56-11.685 7.56-5.968 0-8.848-5.675-9.295-8.754-1.164-3.123-.053-14.26.398-15.386.858-2.676 6.328 2.174 12.35 3.98 3.912 1.308 6.7 2.502 8.365 3.58z" id="26itinqodw"/>
-        <path d="M75.023 42.842c-3.184 0-3.69-9.75-2.39-9.816 1.327.066.466 3.934 1.726 3.98 1.274-.046.57-9.201 3.984-8.622 3.353.638 3.752 7.398 2.125 10.478-1.605 3.052-2.378 3.98-5.445 3.98z" id="b4i1jt3viz"/>
-        <path d="m37.643 36.727-15.43-1.15c-.113 0-.224-.02-.338-.036l-.108-.018-.227-.036-.131-.028-.204-.044-.14-.036-.195-.057-.142-.044-.193-.064-.142-.052-.194-.074-.136-.06-.196-.087c-.044-.021-.088-.039-.132-.062l-.211-.106-.113-.06a3.074 3.074 0 0 1-.258-.149l-.054-.018a5.775 5.775 0 0 1-.315-.196l-.095-.062-.217-.15-.118-.084c-.062-.047-.127-.09-.189-.14l-.126-.097-.175-.142-.127-.106-.17-.147-.124-.11-.146-.14-.18-.173-.132-.131a5.875 5.875 0 0 1-.176-.183l-.129-.137-.17-.196a3.056 3.056 0 0 1-.121-.136l-.175-.214-.106-.132-.19-.258-.083-.108a13.312 13.312 0 0 1-.258-.369l-.041-.062a22.07 22.07 0 0 1-.207-.317c-.028-.046-.054-.092-.082-.136a8.46 8.46 0 0 1-.152-.258c-.05-.088-.06-.106-.088-.16-.028-.054-.09-.16-.134-.24-.044-.08-.057-.116-.088-.172a6.746 6.746 0 0 1-.118-.238l-.085-.18-.124-.24a5.628 5.628 0 0 0-.08-.183 2.651 2.651 0 0 1-.098-.258c-.03-.095-.049-.123-.072-.185l-.093-.258-.062-.183c-.03-.088-.056-.178-.085-.258l-.054-.173c-.028-.1-.054-.198-.08-.299l-.041-.147c-.036-.152-.072-.301-.103-.453L9.817 7.842a10.377 10.377 0 0 1-.116-.665c0-.072-.015-.142-.023-.214a13.036 13.036 0 0 1-.046-.433c0-.083 0-.163-.013-.245 0-.129-.013-.258-.013-.387v-.611c0-.108 0-.16.018-.237 0-.124.026-.242.041-.36 0-.073.018-.145.031-.217.02-.13.05-.258.078-.382 0-.057.02-.11.033-.165.044-.178.093-.353.15-.516 0-.023.018-.04.025-.064.05-.144.104-.286.163-.425a3.25 3.25 0 0 1 .162-.34 4.046 4.046 0 0 1 .242-.425l.073-.11c.054-.082.11-.162.17-.242l.098-.121c.057-.07.113-.137.173-.201.059-.065.072-.08.108-.116a7.24 7.24 0 0 1 .188-.183l.114-.103.216-.173.106-.08c.11-.081.225-.157.343-.227l-9.59 5.53a3.702 3.702 0 0 0-.344.222l-.105.08c-.073.054-.147.11-.217.173l-.116.103-.186.18c-.036.039-.074.078-.11.119a8.899 8.899 0 0 0-.17.2c-.057.07-.068.08-.099.122-.03.041-.116.16-.17.242-.023.037-.049.07-.072.109a4.368 4.368 0 0 0-.242.425c-.052.1-.103.201-.147.304l-.016.036c-.059.137-.113.281-.165.426 0 .02-.015.041-.023.064-.057.168-.106.34-.15.516l-.036.167A7.104 7.104 0 0 0 .106 10c-.013.072-.02.144-.031.217-.016.118-.031.237-.041.358 0 .08-.013.16-.019.237 0 .121-.012.242-.015.366v.258c0 .126 0 .258.013.387 0 .08 0 .162.013.258 0 .141.028.288.046.433 0 .072 0 .141.023.214.031.218.07.44.116.665L4.1 32.298c.031.152.067.302.103.451l.039.147.082.302.055.173c.025.09.054.18.085.257l.062.183.092.258c.024.062.047.124.073.186l.098.245c.033.082.051.121.08.183l.108.24.085.177c.039.08.077.16.118.24l.088.17.132.243.09.16c.049.085.1.17.152.257l.082.134c.067.109.137.217.21.323l.038.059c.082.124.17.258.258.369l.08.105c.064.085.126.17.19.258l.109.132c.056.072.116.141.175.214l.119.136c.056.067.116.132.172.196l.13.137.172.183.134.131.18.173c.024.026.05.05.075.072l.072.067.124.111.17.147.127.106.175.142.126.098.189.139.118.085c.072.052.144.1.217.147l.095.064c.103.067.209.134.315.196l.051.031.258.15.116.06c.067.035.137.071.209.105l.131.062.196.087.137.057c.064.028.129.052.193.077l.142.052.193.064.142.044.194.054.139.036c.07.018.136.034.206.047l.131.028.225.036.11.018c.114 0 .225.026.338.034l15.43 1.145a4.71 4.71 0 0 0 2.746-.586l9.59-5.53a4.71 4.71 0 0 1-2.727.562z" id="knh48u1foL"/>
-        <filter x="-33.4%" y="-32.4%" width="166.9%" height="164.7%" filterUnits="objectBoundingBox" id="gn1twrq42M">
-            <feGaussianBlur stdDeviation="6.5" in="SourceAlpha" result="shadowBlurInner1"/>
-            <feOffset dx="14" dy="-10" in="shadowBlurInner1" result="shadowOffsetInner1"/>
-            <feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"/>
-            <feColorMatrix values="0 0 0 0 0.117647059 0 0 0 0 0.321568627 0 0 0 0 0.725490196 0 0 0 0.430732354 0" in="shadowInnerInner1"/>
-        </filter>
-        <rect id="uhfyv47b4r" x="0" y="0" width="7.702" height="11.539" rx="3.851"/>
-    </defs>
-    <g fill="none" fill-rule="evenodd">
-        <mask id="yvguywbp7c" fill="#fff">
-            <use xlink:href="#qtgw17kl6a"/>
-        </mask>
-        <path d="M1658-22.28c-17.701 126.926-90.423 176.371-218.164 148.335C1248.224 84.002 1323.675 231 1036 231V-85h622v62.72z" fill="url(#d482newe7b)" mask="url(#yvguywbp7c)" transform="rotate(180 1347 73)"/>
-        <path d="M1658-17.28c-17.701 126.926-90.423 176.371-218.164 148.335C1248.224 89.002 1323.675 236 1036 236V-80h622v62.72z" fill="url(#d99hf5iw4d)" mask="url(#yvguywbp7c)" transform="rotate(180 1347 78)"/>
-        <path d="M622-2.28c-17.701 126.926-90.423 176.371-218.164 148.335C212.224 104.002 287.675 251 0 251V-65h622v62.72z" fill="url(#ev27gpsgke)" mask="url(#yvguywbp7c)" transform="rotate(180 311 93)"/>
-        <g mask="url(#yvguywbp7c)">
-            <path d="M1269.784 93.19c.217-.04.436-.077.474-.357-.09-.174-.177-.35-.271-.523-1-1.82-1.537-3.76-1.5-5.85.007-.358.03-.551.441-.285.225.146.513.162.794.167 1.155.02 2.24-.293 3.301-.698 2.429-.928 4.672-2.18 6.636-3.91.701-.603 1.337-1.265 1.66-2.154.263-.72.04-1.095-.691-1.322-.527-.164-1.038-.02-1.555.037-.212.03-.43.032-.634.091-3.727 1.076-7.07 2.792-9.605 5.848-.059.07-.1.192-.223.12-.098-.058-.083-.159-.064-.261.13-.691.232-1.388.383-2.074.747-3.382 2.19-6.542 3.111-9.87.05-.178.12-.346.365-.21.583.322 1.22.206 1.84.217 1.957-.386 3.777-1.14 5.504-2.118 1.742-.986 3.421-2.068 4.673-3.682.407-.525.895-1.105.524-1.809-.35-.66-1.07-.565-1.687-.526-1.202.076-2.337.447-3.438.913-2.432 1.029-4.695 2.332-6.599 4.2-.19.187-.36.395-.618.68.196-1.26.124-2.41.118-3.558-.014-2.457-.64-4.803-1.326-7.136-.056-.189-.123-.373-.187-.559-.097-.284-.054-.426.291-.512 1.012-.253 1.658-1.048 2.266-1.8 1.947-2.408 3.333-5.116 4.051-8.15a7.033 7.033 0 0 0 .192-1.985c-.058-1.137-.836-1.57-1.808-.956-.887.56-1.58 1.342-2.193 2.19-1.798 2.513-3.141 5.234-3.735 8.444-.2-.549-.35-.95-.493-1.354-.727-2.05-1.47-4.095-1.898-6.237-.036-.18-.092-.326.065-.483.77-.772 1.01-1.783 1.27-2.796.225-.872.248-1.772.437-2.646.037-2.1.063-4.201-.462-6.26-.185-.725-.422-1.433-.803-2.082-.583-.992-1.472-.997-2.03.013-.626 1.13-.93 2.353-1.062 3.643-.107 1.034-.246 2.06-.22 3.104.016.567.21 1.122.107 1.696.037 1.609.347 3.154 1.071 4.6.096.19.195.424.36.526.604.374.695.983.842 1.595.463 1.93 1.131 3.795 1.79 5.664.062.175.179.348.09.653-.64-.604-1.25-1.17-1.925-1.651-2.186-1.553-4.497-2.84-7.149-3.408-.429-.092-.86-.085-1.284-.045-.79.076-1.095.61-.854 1.387.186.6.566 1.07.984 1.513 2.408 2.553 5.325 4.273 8.646 5.329.13.041.256.095.383.143.752.038 1.505.28 2.252-.055.215-.096.261.127.306.261a36.205 36.205 0 0 1 1.307 5.417c.251 1.516.122 3.053.129 4.582 0 .212.015.428-.215.604-.076-.12-.148-.228-.217-.34a15.521 15.521 0 0 0-2.487-3.035c-1.03-.988-2.154-1.868-3.312-2.702-1.132-.616-2.219-1.333-3.51-1.594a2.866 2.866 0 0 0-.52-.064c-.923-.013-1.311.508-1.08 1.41.277 1.08.924 1.955 1.613 2.775 1.91 2.275 4.16 4.136 6.859 5.407.583.274 1.178.535 1.837.561.323.013.33.155.256.422-.391 1.42-.917 2.795-1.39 4.188-.73 2.152-1.498 4.292-1.863 6.536-.251.072-.282-.126-.366-.241-2.017-2.787-4.585-4.909-7.676-6.389-.58-.278-1.196-.488-1.854-.495-.892-.008-1.287.506-1.071 1.374.274 1.101.935 1.993 1.638 2.828 1.911 2.273 4.163 4.133 6.864 5.4.6.281 1.213.562 1.897.552.398-.006.376.252.367.514-.082 2.335.679 4.436 1.767 6.446.027.05.076.088.114.132M1231.784 93.19c.217-.04.436-.077.474-.357-.09-.174-.177-.35-.271-.523-1-1.82-1.537-3.76-1.5-5.85.007-.358.03-.551.441-.285.225.146.513.162.794.167 1.155.02 2.24-.293 3.301-.698 2.429-.928 4.672-2.18 6.636-3.91.701-.603 1.337-1.265 1.66-2.154.263-.72.04-1.095-.691-1.322-.527-.164-1.038-.02-1.555.037-.212.03-.43.032-.634.091-3.727 1.076-7.07 2.792-9.605 5.848-.059.07-.1.192-.223.12-.098-.058-.083-.159-.064-.261.13-.691.232-1.388.383-2.074.747-3.382 2.19-6.542 3.111-9.87.05-.178.12-.346.365-.21.583.322 1.22.206 1.84.217 1.957-.386 3.777-1.14 5.504-2.118 1.742-.986 3.421-2.068 4.673-3.682.407-.525.895-1.105.524-1.809-.35-.66-1.07-.565-1.687-.526-1.202.076-2.337.447-3.438.913-2.432 1.029-4.695 2.332-6.599 4.2-.19.187-.36.395-.618.68.196-1.26.124-2.41.118-3.558-.014-2.457-.64-4.803-1.326-7.136-.056-.189-.123-.373-.187-.559-.097-.284-.054-.426.291-.512 1.012-.253 1.658-1.048 2.266-1.8 1.947-2.408 3.333-5.116 4.051-8.15a7.033 7.033 0 0 0 .192-1.985c-.058-1.137-.836-1.57-1.808-.956-.887.56-1.58 1.342-2.193 2.19-1.798 2.513-3.141 5.234-3.735 8.444-.2-.549-.35-.95-.493-1.354-.727-2.05-1.47-4.095-1.898-6.237-.036-.18-.092-.326.065-.483.77-.772 1.01-1.783 1.27-2.796.225-.872.248-1.772.437-2.646.037-2.1.063-4.201-.462-6.26-.185-.725-.422-1.433-.803-2.082-.583-.992-1.472-.997-2.03.013-.626 1.13-.93 2.353-1.062 3.643-.107 1.034-.246 2.06-.22 3.104.016.567.21 1.122.107 1.696.037 1.609.347 3.154 1.071 4.6.096.19.195.424.36.526.604.374.695.983.842 1.595.463 1.93 1.131 3.795 1.79 5.664.062.175.179.348.09.653-.64-.604-1.25-1.17-1.925-1.651-2.186-1.553-4.497-2.84-7.149-3.408-.429-.092-.86-.085-1.284-.045-.79.076-1.095.61-.854 1.387.186.6.566 1.07.984 1.513 2.408 2.553 5.325 4.273 8.646 5.329.13.041.256.095.383.143.752.038 1.505.28 2.252-.055.215-.096.261.127.306.261a36.205 36.205 0 0 1 1.307 5.417c.251 1.516.122 3.053.129 4.582 0 .212.015.428-.215.604-.076-.12-.148-.228-.217-.34a15.521 15.521 0 0 0-2.487-3.035c-1.03-.988-2.154-1.868-3.312-2.702-1.132-.616-2.219-1.333-3.51-1.594a2.866 2.866 0 0 0-.52-.064c-.923-.013-1.311.508-1.08 1.41.277 1.08.924 1.955 1.613 2.775 1.91 2.275 4.16 4.136 6.859 5.407.583.274 1.178.535 1.837.561.323.013.33.155.256.422-.391 1.42-.917 2.795-1.39 4.188-.73 2.152-1.498 4.292-1.863 6.536-.251.072-.282-.126-.366-.241-2.017-2.787-4.585-4.909-7.676-6.389-.58-.278-1.196-.488-1.854-.495-.892-.008-1.287.506-1.071 1.374.274 1.101.935 1.993 1.638 2.828 1.911 2.273 4.163 4.133 6.864 5.4.6.281 1.213.562 1.897.552.398-.006.376.252.367.514-.082 2.335.679 4.436 1.767 6.446.027.05.076.088.114.132" fill="#454E90"/>
-            <path d="M1256.02 102.19c-.325-.058-.652-.113-.71-.523.136-.256.266-.515.407-.767 1.501-2.67 2.305-5.515 2.249-8.582-.01-.524-.045-.807-.661-.416-.338.214-.769.238-1.19.245-1.733.028-3.362-.43-4.953-1.024-3.643-1.361-7.008-3.199-9.954-5.734-1.051-.886-2.005-1.856-2.49-3.16-.394-1.055-.059-1.606 1.037-1.939.791-.24 1.557-.029 2.333.055.317.042.646.047.95.133 5.591 1.578 10.606 4.095 14.408 8.577.088.103.151.281.335.175.147-.084.124-.232.096-.383-.195-1.013-.348-2.035-.575-3.041-1.12-4.96-3.285-9.595-4.666-14.475-.074-.261-.18-.509-.547-.31-.875.473-1.83.304-2.76.32-2.936-.566-5.666-1.673-8.257-3.107-2.613-1.447-5.132-3.033-7.01-5.401-.61-.77-1.342-1.62-.785-2.652.524-.968 1.605-.829 2.53-.772 1.803.111 3.505.656 5.157 1.34 3.648 1.508 7.043 3.419 9.898 6.16.285.274.54.578.928.997-.294-1.847-.186-3.534-.177-5.218.021-3.605.96-7.046 1.99-10.468.082-.276.184-.547.28-.82.145-.415.08-.623-.438-.75-1.517-.371-2.487-1.536-3.398-2.639-2.92-3.532-5-7.504-6.077-11.954a10.095 10.095 0 0 1-.288-2.911c.087-1.669 1.255-2.303 2.713-1.402 1.33.822 2.368 1.967 3.288 3.212 2.697 3.685 4.712 7.676 5.604 12.384.3-.805.523-1.394.738-1.986 1.09-3.007 2.207-6.006 2.848-9.148.054-.263.137-.478-.098-.708-1.154-1.132-1.515-2.615-1.906-4.1-.336-1.28-.371-2.6-.654-3.882-.056-3.081-.094-6.162.693-9.18.277-1.064.633-2.102 1.204-3.054.875-1.456 2.208-1.463 3.046.019.938 1.657 1.393 3.45 1.592 5.343.16 1.517.37 3.021.329 4.552-.023.832-.313 1.646-.16 2.487-.055 2.36-.52 4.626-1.607 6.747-.143.28-.29.622-.539.772-.906.549-1.043 1.44-1.263 2.339-.695 2.83-1.697 5.566-2.684 8.306-.093.258-.269.511-.135.959.96-.887 1.873-1.718 2.887-2.422 3.28-2.277 6.745-4.164 10.723-4.998.643-.135 1.291-.125 1.926-.066 1.186.11 1.643.894 1.281 2.034-.28.88-.85 1.57-1.476 2.22-3.612 3.743-7.987 6.266-12.97 7.815-.194.06-.382.14-.574.21-1.127.056-2.257.412-3.377-.08-.323-.142-.392.185-.459.383-.875 2.595-1.504 5.252-1.96 7.944-.378 2.223-.183 4.478-.194 6.72-.001.312-.022.628.322.886.114-.175.223-.335.326-.498 1.041-1.648 2.31-3.12 3.73-4.452 1.544-1.449 3.231-2.74 4.968-3.963 1.698-.903 3.329-1.955 5.266-2.337.256-.05.52-.09.78-.094 1.384-.02 1.966.745 1.62 2.066-.416 1.585-1.387 2.869-2.42 4.072-2.864 3.336-6.24 6.066-10.289 7.93-.874.402-1.767.785-2.755.823-.484.018-.495.226-.385.619.587 2.083 1.376 4.1 2.085 6.143 1.096 3.155 2.248 6.294 2.795 9.585.377.105.423-.184.549-.354 3.026-4.086 6.877-7.199 11.514-9.37.871-.408 1.795-.716 2.782-.726 1.338-.012 1.93.743 1.606 2.015-.412 1.616-1.402 2.923-2.457 4.148-2.867 3.334-6.245 6.062-10.296 7.92-.9.412-1.82.824-2.846.81-.596-.01-.564.37-.55.754.123 3.423-1.019 6.505-2.651 9.453-.04.073-.113.13-.171.194" fill="#6B73AB"/>
-            <path d="M1291.752 80.19c-.364-.065-.731-.126-.795-.583.151-.285.297-.573.456-.854 1.679-2.974 2.579-6.141 2.516-9.557-.011-.583-.05-.899-.74-.463-.378.238-.86.265-1.332.272-1.938.031-3.762-.478-5.542-1.14-4.076-1.516-7.843-3.562-11.139-6.385-1.176-.986-2.243-2.067-2.787-3.52-.44-1.174-.065-1.787 1.161-2.159.885-.267 1.742-.032 2.61.061.355.048.723.052 1.064.148 6.257 1.758 11.869 4.56 16.123 9.552.098.116.169.313.375.196.164-.095.139-.26.107-.427-.218-1.128-.39-2.267-.644-3.387-1.253-5.523-3.676-10.686-5.221-16.12-.083-.29-.2-.566-.612-.345-.979.527-2.047.338-3.09.356-3.284-.63-6.34-1.862-9.239-3.46-2.923-1.61-5.742-3.377-7.843-6.014-.683-.858-1.503-1.805-.88-2.954.587-1.078 1.797-.923 2.832-.86 2.017.124 3.922.731 5.77 1.492 4.083 1.68 7.882 3.808 11.077 6.861.32.305.604.643 1.038 1.11-.329-2.057-.208-3.936-.197-5.811.023-4.014 1.073-7.846 2.225-11.657.093-.307.207-.61.314-.913.163-.463.09-.695-.49-.836-1.698-.413-2.782-1.71-3.802-2.939-3.268-3.933-5.595-8.356-6.8-13.312a11.19 11.19 0 0 1-.322-3.242c.097-1.858 1.403-2.565 3.035-1.561 1.488.915 2.65 2.19 3.68 3.577 3.018 4.104 5.273 8.548 6.27 13.791.336-.897.586-1.552.827-2.212 1.22-3.348 2.47-6.688 3.187-10.188.06-.292.153-.531-.11-.788-1.291-1.26-1.696-2.912-2.133-4.566-.376-1.425-.415-2.894-.732-4.322-.063-3.432-.105-6.862.775-10.224.31-1.185.709-2.34 1.349-3.401.978-1.621 2.47-1.63 3.408.021 1.05 1.845 1.559 3.843 1.782 5.95.178 1.69.413 3.365.367 5.07-.025.926-.35 1.833-.178 2.77-.063 2.627-.582 5.151-1.798 7.513-.16.311-.326.692-.604.86-1.014.61-1.167 1.604-1.413 2.604-.778 3.152-1.9 6.2-3.004 9.25-.104.288-.3.57-.151 1.068 1.074-.987 2.096-1.912 3.231-2.697 3.67-2.535 7.548-4.637 11.999-5.566.72-.15 1.445-.14 2.156-.073 1.327.123 1.838.995 1.433 2.265-.313.98-.95 1.748-1.652 2.472-4.041 4.169-8.938 6.978-14.513 8.703-.218.068-.428.156-.643.234-1.261.063-2.525.459-3.78-.09-.36-.157-.438.207-.513.427-.978 2.89-1.683 5.85-2.194 8.847-.422 2.476-.204 4.987-.216 7.485-.002.346-.025.698.36.986.128-.195.25-.374.365-.556 1.165-1.834 2.585-3.475 4.174-4.957 1.728-1.613 3.616-3.05 5.56-4.413 1.9-1.006 3.724-2.178 5.892-2.603.287-.056.582-.1.873-.105 1.549-.021 2.2.83 1.813 2.302-.466 1.764-1.553 3.194-2.708 4.534-3.205 3.716-6.983 6.755-11.514 8.831-.978.448-1.977.874-3.083.916-.542.02-.554.253-.43.69.657 2.32 1.54 4.565 2.333 6.84 1.225 3.514 2.515 7.01 3.128 10.675.421.117.473-.205.613-.394 3.387-4.55 7.697-8.017 12.885-10.435.975-.454 2.009-.797 3.113-.808 1.497-.014 2.16.827 1.798 2.244-.461 1.799-1.57 3.254-2.75 4.62-3.208 3.712-6.988 6.75-11.522 8.818-1.007.46-2.036.92-3.184.902-.668-.01-.632.412-.616.84.138 3.813-1.14 7.245-2.967 10.528-.045.082-.126.144-.191.216" fill="#6B73AB"/>
-            <g transform="translate(1137.05 3)">
-                <use fill="#464D89" xlink:href="#sxlwjl92ff"/>
-                <use fill="url(#saa7qmgvhg)" xlink:href="#sxlwjl92ff"/>
-                <use fill="url(#ce5gxpf76i)" xlink:href="#hdrilhddah"/>
-            </g>
-            <g transform="translate(1117 3)">
-                <use fill="#FFC62C" xlink:href="#ow1x3npuoj"/>
-                <use fill="url(#le5mg3xf6k)" xlink:href="#ow1x3npuoj"/>
-            </g>
-            <g transform="translate(1117 3)">
-                <use fill="#EFEFFF" xlink:href="#22c0oozldl"/>
-                <use fill="url(#06rcssgl7m)" xlink:href="#22c0oozldl"/>
-            </g>
-            <g transform="translate(1117 3)">
-                <use fill="#EFEFFF" xlink:href="#9j5y2nnz4n"/>
-                <use fill="url(#7q9jn06kho)" xlink:href="#9j5y2nnz4n"/>
-            </g>
-            <g fill-rule="nonzero">
-                <path d="M1155.772 52.254c-.46-2.276-.024-3.77-.024-3.77s-.116.91.8 2.375c-.01 1.817.347 2.765.347 2.765l.073-.054-.073.064s-.544-.444-1.123-1.38zM1157.94 51.932c.22.222.426.375.574.448l-.002-.001s.166.06.196.02c.203-.215.252-.616.117-1.37-.774-.441-.872-1.13-.872-1.13s-.14.956-.013 2.033z" fill="#364FDE"/>
-                <path d="M1155.748 48.484s-.637 2.182.441 5.289c.03.09 0 .19-.078.249l-1.137.797c-.108.08-.265.03-.314-.1-.303-.826-1.136-3.565-.293-6.563.039-.12.166-.19.284-.14l1.097.468z" fill="#56D8FF"/>
-                <path d="m1157.924 52.867-1.03.757s-.548-1.455-.264-4.213a.213.213 0 0 1 .323-.16l1 .648s-.196 1.344.088 2.639c.03.13-.02.259-.117.329zM1159.825 51.183l-.95-.627c-.06-.04-.148.02-.128.09.225 1.006.196 1.504-.04 1.753-.029.04-.195-.02-.195-.02.156.08.196.04.196.04.156-.12.744-.548 1.117-.807.147-.11.147-.329 0-.429z" fill="#667DFF"/>
-            </g>
-            <g transform="translate(1117 3)">
-                <use fill="#464D89" xlink:href="#sx3yrisb7p"/>
-                <use fill="url(#ezcb32jf6q)" xlink:href="#sx3yrisb7p"/>
-            </g>
-            <g transform="translate(1153.117 33.241)">
-                <use fill="#FFC62C" xlink:href="#uhfyv47b4r"/>
-                <use fill="url(#txlzgcqvys)" xlink:href="#uhfyv47b4r"/>
-            </g>
-            <path d="M7.702 6.715c-1.543.723-3.363 1.11-5.577 1.11A8.675 8.675 0 0 1 0 7.569V3.846A3.849 3.849 0 0 1 3.85 0a3.849 3.849 0 0 1 3.852 3.846v2.87z" fill="url(#ufuctnxgnt)" transform="translate(1153.117 33.241)"/>
-            <g transform="translate(1117 3)">
-                <use fill="#464D89" xlink:href="#5hs00ybdgu"/>
-                <use fill="url(#lrpq226fxv)" xlink:href="#5hs00ybdgu"/>
-            </g>
-            <g transform="translate(1117 3)">
-                <use fill="#FFC62C" xlink:href="#26itinqodw"/>
-                <use fill="url(#2hrf3zwz1x)" xlink:href="#26itinqodw"/>
-            </g>
-            <path d="M29.76 15.784h16.698c2.172 0 4.133 2.702 4.133 6.035s-1.96 6.035-4.133 6.035H29.76c-2.172 0-4.133-2.702-4.133-6.035s1.961-6.035 4.133-6.035z" fill="url(#zw29mcq42y)" transform="translate(1117 3)"/>
-            <path d="M1146.76 17.457h16.698c2.172 0 4.133 2.702 4.133 6.035s-1.96 6.035-4.133 6.035h-16.698c-2.172 0-4.133-2.702-4.133-6.035s1.961-6.035 4.133-6.035z" fill="#D6DFEA"/>
-            <path d="M1144.731 19.049h18.1c2.355 0 2.768 1.99 2.768 4.443 0 2.454-.413 4.444-2.767 4.444h-18.101c-2.355 0-2.767-1.99-2.767-4.444 0-2.454.412-4.443 2.767-4.443z" fill="#1F1845"/>
-            <path d="m1164.802 20.375 1.516.076a1.2 1.2 0 0 1 1.14 1.199v.184l-2.656 2.123v-3.582z" fill="#1F1845"/>
-            <path d="M1151.122 20.508h3.858a3.05 3.05 0 0 1 0 6.101h-3.858a3.05 3.05 0 0 1 0-6.101z" fill="#7BC1EB" opacity=".3"/>
-            <path d="M1151.124 22.498h3.854a1.061 1.061 0 0 1 0 2.122h-3.854a1.061 1.061 0 0 1 0-2.122z" fill="#7BC1EB"/>
-            <path d="M1148.683 71.235a.199.199 0 1 1 .105-.385c2.077.563 3.9 1.521 6.368 3.202.55.375 2.475 1.725 2.52 1.756 3.044 2.114 5.184 3.313 7.853 4.198a.199.199 0 1 1-.125.377c-2.713-.898-4.883-2.114-7.956-4.249-.046-.031-1.969-1.38-2.516-1.753-2.434-1.658-4.222-2.598-6.249-3.146z" fill="#FFF" fill-rule="nonzero"/>
-            <g transform="translate(1117 3)">
-                <use fill="#FFC62C" xlink:href="#b4i1jt3viz"/>
-                <use fill="url(#ug2qg3glsA)" xlink:href="#b4i1jt3viz"/>
-            </g>
-        </g>
-        <g fill-rule="nonzero" mask="url(#yvguywbp7c)">
-            <path d="M38.443 10.282c1.038-.337 1.989-.443 2.82-.336.819.104 1.517.417 2.058.915 1.103 1.017 1.528 2.773 1.118 4.983L41.706 30.85c-.428 2.35-1.716 4.766-3.441 6.775-1.722 2.004-3.883 3.608-6.084 4.321l-14.057 4.561c-1.04.337-1.99.443-2.822.337-.818-.105-1.517-.417-2.059-.916-1.105-1.017-1.534-2.775-1.132-4.986l2.733-15.003c.428-2.351 1.715-4.765 3.44-6.772 1.722-2.005 3.884-3.61 6.086-4.324z" stroke="#FFF9E3" fill="url(#qs3xaqlfhB)" transform="translate(1359.819 7.257)"/>
-            <path d="M17.402 4.078c.506-.05.86.025.965.208.352.625-.902 4.706-3.17 7.14l-.063.067a6.113 6.113 0 0 0-2.391-2.708c.243-.738.444-1.49.602-2.251.05-.227.087-.452.119-.675 1.405-1.123 2.957-1.683 3.938-1.78z" fill="url(#pclbq5xneC)" transform="translate(1380.284 20.62)"/>
-            <path d="M1391.923 35.378a.262.262 0 0 1 .295.304.537.537 0 0 1-.391.462h-.044a.265.265 0 0 1-.296-.304.537.537 0 0 1 .392-.46l.044-.002z" fill="#CDCDCD"/>
-            <g fill="#ECB732">
-                <path d="m1388.384 33.826.929-1.043.312.304-.925 1.037z"/>
-                <path d="m1388.494 31.168 1.206 1.177.313.306.75.73-.392.43-.746-.724-.312-.304-1.21-1.181z"/>
-            </g>
-            <path fill="#ECB732" d="m1391.2 30.664.316.298-1.503 1.69-.313-.307zM1394.618 39.09l.32.295-1.945 2.218-.304-.312zM1390.319 43.997l1.987-2.269.304.315-1.973 2.25z"/>
-            <path d="M1393.141 36.988c.556-.054.956.077.931.327-.031.285-.61.625-1.298.752-.09.016-.179.029-.262.037-.554.054-.954-.075-.929-.325.03-.287.61-.625 1.298-.754.09-.016.177-.029.26-.037z" fill="#EAADCC"/>
-            <path d="M1393.147 35.663a1.418 1.418 0 0 1-1.041 1.216l-.117.02a.698.698 0 0 1-.783-.805 1.414 1.414 0 0 1 1.041-1.216.81.81 0 0 1 .117-.021.696.696 0 0 1 .783.806zm-1.32.481a.537.537 0 0 0 .391-.462.262.262 0 0 0-.295-.304h-.044a.537.537 0 0 0-.392.46.265.265 0 0 0 .296.304h.044" fill="#000"/>
-            <path fill="#ECB732" d="m1384.943 43.105 1.593 1.598-.393.429-1.581-1.583zM1382.693 41.676l.394-.429 1.548 1.55-.382.441z"/>
-            <path fill="#ECB732" d="m1386.032 41.178.323.29-1.412 1.637-.381.444-.946 1.095-.323-.29.96-1.116.382-.441z"/>
-            <path d="M1387.434 37.796a.065.065 0 0 1 .062.03c.17.268.448.389.867.362h.05a1.808 1.808 0 0 0 1.087-.534.117.117 0 0 1 .067-.03.058.058 0 0 1 .058.022c.024.044.013.1-.027.131-.324.331-.752.541-1.212.596h-.054c-.456.033-.794-.106-.985-.417a.11.11 0 0 1 .037-.133.096.096 0 0 1 .05-.027z" fill="#000"/>
-            <path d="M1384.437 37.988c.203.17.469.245.73.208a1.393 1.393 0 0 0 .342-.081.31.31 0 0 1 .157.325c-.06.289-.559.554-1.13.61h-.087c-.608.037-1.041-.181-.98-.486.055-.239.468-.491.968-.576z" fill="#EAADCC"/>
-            <path d="M1385.157 36.355a.265.265 0 0 1 .296.304.535.535 0 0 1-.391.46h-.044a.265.265 0 0 1-.298-.304.537.537 0 0 1 .394-.46h.043z" fill="#CDCDCD"/>
-            <path d="M1386.382 36.638a1.412 1.412 0 0 1-1.041 1.216l-.117.019a.698.698 0 0 1-.775-.798 1.414 1.414 0 0 1 1.042-1.216l.116-.019a.698.698 0 0 1 .775.798zm-1.32.481a.535.535 0 0 0 .391-.46.265.265 0 0 0-.296-.304h-.043a.537.537 0 0 0-.394.46.265.265 0 0 0 .298.304h.044" fill="#000"/>
-            <path d="M1386.697 36.567a1.897 1.897 0 0 1-1.188 1.556 1.393 1.393 0 0 1-.341.081.933.933 0 0 1-.731-.208 1.006 1.006 0 0 1-.306-.848c.081-.77.627-1.41 1.374-1.612l.154-.025c.63-.069 1.081.38 1.038 1.056zm-1.352 1.287c.566-.15.98-.634 1.041-1.216a.698.698 0 0 0-.783-.804l-.116.019c-.566.15-.98.634-1.042 1.216a.698.698 0 0 0 .783.804l.117-.019" fill="#FFF9E3"/>
-            <path d="M15.134 11.491a6.113 6.113 0 0 0-2.391-2.708 5.013 5.013 0 0 0-3.05-.624 6.873 6.873 0 0 0-1.922.492c-1.373.574-2.676 1.59-3.81 2.903a16.806 16.806 0 0 0-3.855 9.072C-.43 25.89 2.15 27.037 5.763 26.68c.502-.048 1.02-.127 1.556-.227 4.397-.833 8.096-2.81 8.706-8.804.246-2.404-.102-4.526-.891-6.157zm-1.346 5.207c-.03.286-.61.625-1.297.752-.09.017-.18.03-.263.038-.554.054-.954-.075-.929-.325.03-.288.61-.625 1.298-.754.09-.017.177-.03.26-.038.557-.054.956.077.931.327m-1.647-2.787c.625-.062 1.085.386 1.041 1.065a1.875 1.875 0 0 1-1.374 1.612l-.157.025c-.624.06-1.08-.388-1.041-1.067a1.875 1.875 0 0 1 1.375-1.61c.05-.012.1-.02.152-.025m-3.93-3.357 1.205 1.177 1.5-1.683.317.297-1.504 1.69.75.729-.392.43-.746-.724-.924 1.041-.317-.3.929-1.04-1.21-1.182.391-.431M5.855 24.513 4.274 22.93l-.941 1.094-.323-.28.96-1.116-1.56-1.562.394-.43 1.547 1.55 1.398-1.618.322.29-1.412 1.637 1.594 1.597-.394.43m.554-8.565a1.897 1.897 0 0 1-1.187 1.556.31.31 0 0 1 .156.324c-.06.29-.558.555-1.129.61h-.087c-.609.038-1.042-.18-.981-.485.056-.264.468-.506.968-.591a1.006 1.006 0 0 1-.306-.848c.082-.77.628-1.41 1.375-1.612l.154-.025c.625-.06 1.083.387 1.041 1.064m2.902 1.206c-.325.331-.752.541-1.213.596h-.054c-.456.033-.793-.106-.985-.416a.11.11 0 0 1 .038-.134.096.096 0 0 1 .056-.027.065.065 0 0 1 .062.03c.169.268.448.389.867.362h.05a1.808 1.808 0 0 0 1.087-.534.117.117 0 0 1 .067-.03.058.058 0 0 1 .058.022c.024.045.013.1-.027.131m3.38 3.827.769.791-.398.427-.754-.779-1.972 2.25-.319-.296 1.987-2.268-1.127-1.163.396-.416 1.114 1.15 1.929-2.202.32.298-1.945 2.208" fill="url(#2gwsduzgaD)" transform="translate(1380.284 20.62)"/>
-            <path fill="#ECB732" d="m1391.575 40.141 1.114 1.15.304.312.769.792-.398.427-.754-.78-.304-.314-1.127-1.162z"/>
-            <path d="M1393.464 35.592a1.875 1.875 0 0 1-1.375 1.612l-.156.025c-.625.06-1.081-.387-1.041-1.066a1.875 1.875 0 0 1 1.374-1.61c.05-.012.101-.02.152-.025.638-.063 1.092.385 1.046 1.064zm-1.352 1.287a1.418 1.418 0 0 0 1.041-1.216.696.696 0 0 0-.78-.806.81.81 0 0 0-.117.02c-.566.152-.98.635-1.042 1.217a.698.698 0 0 0 .783.804l.117-.019" fill="#FFF9E3"/>
-            <path d="M12.13.169c.657-.04 1.756 2.662 1.334 5.694a8.825 8.825 0 0 1-.12.675 20.279 20.279 0 0 1-.601 2.252 5.013 5.013 0 0 0-3.05-.625 6.873 6.873 0 0 0-1.922.492c.065-.548.17-1.153.31-1.804.057-.27.127-.538.209-.804.912-3.004 3.19-5.818 3.84-5.88z" fill="url(#5r2vls0e8E)" transform="translate(1380.284 20.62)"/>
-            <path d="M4.911 4.79A4.564 4.564 0 0 1 8.29 6.04a9.306 9.306 0 0 0-.209.804 19.46 19.46 0 0 0-.31 1.804c-1.373.575-2.676 1.591-3.81 2.903-.935-2.29-.428-5.846.155-6.473.225-.183.505-.284.795-.287z" fill="url(#pfjfs4qvjF)" transform="translate(1380.284 20.62)"/>
-            <path d="m29.47.5 11.271 8.429h-.668c-.668.087-.888.126-1.052.161l-.087.02-14.88 4.784c-.202.068-.405.144-.61.223-.347.14-.552.228-.754.326-.246.121-.423.211-.597.308-.332.17-.528.286-.725.406-1.422 1.009-1.667 1.211-1.902 1.412-.252.215-.435.384-.613.553-.278.265-.447.43-.61.597-.437.475-.52.567-.553.605l-.013.016c-2.073 2.842-2.18 3.028-2.28 3.213l-.31.613-.107.215a9.716 9.716 0 0 0-.255.539c-.115.274-.209.508-.293.742L11.12 40.755c-.238 1.326-.205 2.503.052 3.495l-.01-.04-9.249-7.645c-.533-.443-.927-1.05-1.162-1.792l-.072-.252c-.225-.87-.244-1.902-.032-3.062L3.38 16.454c.659-2.08.757-2.338.868-2.592.727-1.498.825-1.666.923-1.834.77-1.164.937-1.4 1.045-1.545l.033-.043.359-.393.319-.347a64.462 64.462 0 0 1 1.45-1.55l.068-.069c.04-.04.074-.071.102-.097l.04-.036.054-.047c.263-.222.494-.413.728-.592 1.92-1.227 2.087-1.312 2.258-1.396.244-.116.428-.197.605-.27.32-.125.507-.194.695-.255L27.004.826 29.471.5z" stroke="#AF8822" fill="url(#gq2p1x81pG)" transform="translate(1359.819 7.257)"/>
-            <g>
-                <path d="m10.417.525 14.787 4.9c2.633 1.537 2.832 1.691 2.987 1.839.487.508.674.712.79.848l1.82 17.275-6.265 7.4.955-14.332-.073-1.035c-1.987-4.163-2.134-4.31-2.269-4.46-.2-.231-.35-.384-.51-.538a12.448 12.448 0 0 0-.645-.57L5.96 5.689l-1.558-.223L7.67 1.387l2.748-.862z" stroke="url(#6x10eg2iiH)" fill="url(#cyjvslt1sI)" transform="translate(1351 28.95)"/>
-                <path d="M1.951 6.816c.946-.586 2.258-.668 3.701-.169l13.29 4.606c1.527.53 2.912 1.608 3.92 2.918.995 1.295 1.628 2.82 1.637 4.273l.089 12.775c.01 1.347-.532 2.387-1.452 2.957-.946.585-2.257.667-3.7.167l-13.29-4.606c-1.528-.53-2.912-1.608-3.92-2.918C1.23 25.525.599 24 .59 22.546L.5 9.771c-.01-1.346.531-2.386 1.451-2.955z" stroke="#74EFC9" fill="url(#c1596p1blJ)" transform="translate(1351 28.95)"/>
-                <path d="M1362.927 42.182c.46.152.824.505.992.959l1.125 2.997-4.897 5.47c-.386.429-.32 1.092.04 1.578l-4.073-1.3c-.957-.305-1.412-1.519-.818-2.183l6.468-7.252a1.081 1.081 0 0 1 1.163-.27z" fill="#80EEC0"/>
-                <path d="M1367.905 45.933c.38.124.684.412.827.785l3.295 8.672c.303.797-.31 1.476-1.103 1.223l-8.64-2.754c-.792-.253-1.169-1.248-.68-1.792l5.34-5.916a.894.894 0 0 1 .961-.218z" fill="#00DC82"/>
-            </g>
-        </g>
-        <g fill-rule="nonzero" mask="url(#yvguywbp7c)">
-            <g transform="translate(478.44 7)">
-                <use fill="url(#nryep7r8dK)" xlink:href="#knh48u1foL"/>
-                <use fill="#000" filter="url(#gn1twrq42M)" xlink:href="#knh48u1foL"/>
-                <path stroke="url(#2s4xkdxeqN)" d="m9.757 2.559-.012.029-.061.139c-.059.14-.114.282-.164.427a.602.602 0 0 0-.048.128 6.341 6.341 0 0 0-.148.517l-.01.037c-.017.06-.03.12-.037.182-.027.12-.053.244-.073.368l-.008.04a1.55 1.55 0 0 0-.03.222l-.01.064a2.516 2.516 0 0 0-.03.28c-.017.087-.02.162-.02.295v.62l.014.43c.014.066.012.128.012.193v.023l.002.022a13.223 13.223 0 0 0 .059.532c.003.024.008.046.008.07a.21.21 0 0 1-.001.024 10.507 10.507 0 0 0 .128.742L13.2 26.834c.029.143.062.284.096.426l.012.05.025.09.017.06c.027.106.055.21.085.317l.06.19.038.117c.015.048.031.098.047.14l.065.193.095.264c.011.031.022.056.033.082.01.02.019.043.032.083.037.115.084.237.119.311.028.063.054.123.08.186l.13.25.083.177c.042.087.096.197.13.259l.023.047c.017.035.035.073.065.127l.068.121.061.11.08.147.014.025c.052.093.107.183.161.273l.008.012.041.068.036.06c.07.11.142.22.216.332l.042.064c.088.13.177.256.275.392l.078.103.197.266.115.142.076.094.102.124c.043.051.088.103.134.151l.17.197.132.139c.061.067.126.134.19.198l.14.14.182.174.152.144.135.122.177.152.132.11.184.149.122.095c.044.034.088.067.133.099l.074.054.126.09.223.154.093.06c.127.086.258.165.388.24l.048.016.087.053.152.084.121.063.207.104c.037.019.074.036.108.051l.048.022.2.09.147.063.212.082.148.054.205.068.156.048.202.06.157.04.213.046.145.03.237.038.114.02.074.01c.107.016.212.03.32.031l15.345 1.143-7.003 4.04a4.213 4.213 0 0 1-2.205.538l-.259-.016-15.433-1.145c-.035-.002-.07-.008-.106-.012a2.268 2.268 0 0 0-.22-.022l-.077-.012-.211-.034-.126-.028a2.442 2.442 0 0 1-.179-.04l-.13-.033-.187-.052-.13-.04-.181-.061-.13-.048-.06-.023c-.037-.014-.073-.028-.118-.048l-.13-.054-.182-.08-.134-.064a3.68 3.68 0 0 1-.191-.097l-.105-.053-.24-.14-.056-.033a7.444 7.444 0 0 1-.287-.179l-.105-.07a4.842 4.842 0 0 1-.195-.133l-.113-.081-.18-.132-.118-.092-.168-.137-.12-.1-.164-.141-.117-.105-.08-.074a.487.487 0 0 1-.05-.048l-.188-.18-.127-.125-.166-.176-.124-.132-.055-.062-.109-.123-.11-.128-.057-.068c-.038-.045-.075-.09-.118-.145l-.1-.12-.032-.045a16.85 16.85 0 0 0-.155-.208l-.086-.114c-.071-.09-.141-.197-.21-.299l-.066-.101a8.064 8.064 0 0 1-.196-.303l-.078-.126-.058-.098-.089-.151-.086-.153-.126-.233-.088-.17c-.04-.076-.076-.152-.112-.226l-.08-.168-.11-.243-.006-.012c-.022-.048-.038-.083-.065-.15l-.045-.114-.055-.135-.063-.163-.09-.249-.066-.197a2.168 2.168 0 0 1-.075-.227l-.054-.172-.038-.138a11.992 11.992 0 0 0-.04-.148l-.037-.137c-.034-.144-.07-.287-.1-.435L.702 13.292a10.312 10.312 0 0 1-.12-.698.063.063 0 0 1-.01-.02c-.006-.02.001-.04.001-.06 0-.018-.005-.035-.003-.053a3.715 3.715 0 0 0-.018-.133c-.012-.083-.025-.166-.025-.247v-.034a.839.839 0 0 1-.005-.033c-.01-.071-.008-.132-.008-.191v-.027l-.003-.023c-.01-.112-.01-.227-.01-.337v-.252c.001-.048.004-.095.007-.142.004-.07.008-.14.008-.21l.006-.055c.006-.059.011-.118.012-.177.01-.108.024-.213.037-.317l.01-.074c.006-.04.01-.08.019-.127a6.585 6.585 0 0 1 .088-.44l.015-.07c.04-.162.085-.322.138-.476l-.005.013.02-.049.016-.052c.045-.123.091-.247.143-.366l.016-.037c.04-.092.086-.182.132-.272l.018-.04v-.001l.006-.01c.06-.115.123-.224.192-.33l.006-.009a.29.29 0 0 1 .004-.006l.024-.037a5.465 5.465 0 0 1 .19-.271l.038-.048.047-.057c.053-.065.125-.15.159-.188.019-.022.039-.042.06-.064l.03-.032.17-.166.108-.096c.06-.052.123-.1.186-.147l7.357-4.272z" stroke-linejoin="square"/>
-            </g>
-            <path d="m14.585.501.272.013 15.43 1.142c1.768.13 3.54 1.143 4.987 2.645 1.477 1.533 2.616 3.585 3.068 5.792l3.89 18.905c.441 2.148.152 4.047-.709 5.373a4.057 4.057 0 0 1-1.633 1.468c-.643.311-1.39.45-2.215.39l-15.425-1.15c-1.769-.131-3.54-1.143-4.987-2.646-1.477-1.534-2.617-3.586-3.068-5.794L10.307 7.74c-.445-2.146-.158-4.043.7-5.367A4.054 4.054 0 0 1 12.64.906c.644-.312 1.391-.452 2.217-.392z" stroke="#6097FF" fill="url(#9qa78t1wxO)" transform="translate(478.44 7)"/>
-            <g fill="#F9F9F9">
-                <path d="M514.678 26.25c.746 1.116 1.062 2.881.764 4.215-.34 1.455-1.412 2.454-3.055 2.804a5.634 5.634 0 0 1-.989.087 7.788 7.788 0 0 1-1.3-.074 6.055 6.055 0 0 1-3.233-1.795c-.311-.343-.934-1.261-.91-1.323l.265-.211 1.052-.773.79-.588.226.301c.34.486.762.907 1.249 1.246.45.246.956.372 1.469.366.588-.01 1.124-.21 1.443-.588.246-.29.353-.672.294-1.047a1.58 1.58 0 0 0-.312-.882c-.276-.378-.787-.682-2.204-1.353-1.626-.735-2.332-1.21-3.02-1.946a5.713 5.713 0 0 1-.994-1.719c-.162-.501-.319-1.73-.262-2.226.147-1.74 1.167-2.973 2.752-3.347a3.82 3.82 0 0 1 .813-.081c.493-.017.987.027 1.47.13.764.209 1.452.634 1.982 1.225.311.342.781.942.827 1.097 0 .052-1.193 1.088-1.925 1.665-.049 0-.173-.137-.304-.342-.453-.635-.882-.907-1.505-.948h-.147c-.815.013-1.297.558-1.213 1.415.018.23.086.455.2.657.248.473.65.754 1.871 1.322 2.247 1.029 3.246 1.714 3.906 2.713zM498.722 17.68c2.887-.048 5.263-.08 5.263-.054.033.016.094.648.17 1.43l.136 1.387-3.901.064 1.256 12.825-2.767.047-1.252-12.83-3.898.066-.138-1.414-.115-1.412 5.246-.109z"/>
-            </g>
-            <g>
-                <path d="m12.118.525 17.24 5.713c1.903 1.031 2.494 1.363 2.727 1.51l.073.049c.04.027.064.047.089.067.244.196.43.362.607.531.223.217.383.378.529.536.207.232.353.403.494.578l1.931 4.948.103 15.047-6.915 8.16.575-16.264c-1.258-4.034-1.503-4.661-1.615-4.858l-.015-.026-.014-.022-.014-.02c-.737-.99-.892-1.172-1.048-1.346a9.145 9.145 0 0 0-.587-.62 14.582 14.582 0 0 0-.677-.6 16.592 16.592 0 0 0-.536-.419L6.91 6.695l-1.942-.278 3.904-4.874L12.118.525z" stroke="url(#1zyyvdzupP)" fill="url(#7812l4nxyQ)" transform="translate(471.875 25.343)"/>
-                <path d="M22.223 12.54c3.762 1.304 6.832 5.295 6.856 8.91l.103 14.86c.026 3.61-3.004 5.491-6.765 4.187L6.958 35.14C3.197 33.835.126 29.844.103 26.23L0 11.37c-.026-3.61 3.004-5.49 6.765-4.187l15.458 5.357z" fill="url(#68oz963z5R)" transform="translate(471.875 25.343)"/>
-                <path fill="#3EB17E" d="m495.092 45.454-9.793 11.365-9.257-17.71 3.762 1.254 5.601 10.683 5.877-6.86z"/>
-                <path fill="#33465A" d="m491.282 44.186-5.877 6.86-5.601-10.683 3.523 1.173 2.178 4.118 2.252-2.642z"/>
-            </g>
-        </g>
-    </g>
-</svg>
diff --git a/packages/docs/public/images/vueschool/bg-mobile.png b/packages/docs/public/images/vueschool/bg-mobile.png
deleted file mode 100644 (file)
index f18973d..0000000
Binary files a/packages/docs/public/images/vueschool/bg-mobile.png and /dev/null differ
diff --git a/packages/docs/public/images/vueschool/bg-tablet.svg b/packages/docs/public/images/vueschool/bg-tablet.svg
deleted file mode 100644 (file)
index 95e0804..0000000
+++ /dev/null
@@ -1,253 +0,0 @@
-<svg width="768" height="72" viewBox="0 0 768 72" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-    <defs>
-        <linearGradient x1="89.414%" y1="61.013%" x2="12.037%" y2="61.013%" id="x4z7rncnjb">
-            <stop stop-color="#282F64" offset="0%"/>
-            <stop stop-color="#191E3F" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="89.414%" y1="61.013%" x2="12.037%" y2="61.013%" id="eqs2eehfbd">
-            <stop stop-color="#2E3570" offset="0%"/>
-            <stop stop-color="#191E3F" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="89.414%" y1="61.013%" x2="12.037%" y2="61.013%" id="ac2qp08yee">
-            <stop stop-color="#2E3570" offset="0%"/>
-            <stop stop-color="#191E3F" stop-opacity="0" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="9iaagghgbg">
-            <stop stop-color="#403F9F" stop-opacity="0" offset="0%"/>
-            <stop stop-opacity=".2" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="0%" y1="32.091%" x2="100%" y2="67.909%" id="7ted8bby6i">
-            <stop stop-opacity=".3" offset="0%"/>
-            <stop stop-color="#1F1845" stop-opacity="0" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="wtnv1zwigk">
-            <stop stop-color="#FFC62C" stop-opacity="0" offset="0%"/>
-            <stop stop-color="#FF6663" stop-opacity=".3" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="r65pzzurym">
-            <stop stop-color="#A7A7EE" stop-opacity="0" offset="0%"/>
-            <stop stop-color="#4C55A0" stop-opacity=".2" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="yf5gdjpoqo">
-            <stop stop-color="#A7A7EE" stop-opacity="0" offset="0%"/>
-            <stop stop-color="#4C55A0" stop-opacity=".2" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="40qi6pxfaq">
-            <stop stop-color="#403F9F" stop-opacity="0" offset="0%"/>
-            <stop stop-opacity=".2" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="cknulgfsvs">
-            <stop stop-color="#FFC62C" stop-opacity="0" offset="0%"/>
-            <stop stop-color="#FF6663" stop-opacity=".3" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="98.428%" y1="50%" x2="1.572%" y2="100%" id="uwqzm8w77t">
-            <stop stop-opacity=".2" offset="0%"/>
-            <stop stop-color="#FFC42C" stop-opacity="0" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="u1e053vxjv">
-            <stop stop-color="#403F9F" stop-opacity="0" offset="0%"/>
-            <stop stop-opacity=".2" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="qw72fgzeyx">
-            <stop stop-color="#FFC62C" stop-opacity="0" offset="0%"/>
-            <stop stop-color="#FF6663" stop-opacity=".3" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="100%" y1="38.311%" x2="0%" y2="61.689%" id="qwkvpwu3uy">
-            <stop stop-opacity=".15" offset="0%"/>
-            <stop stop-color="#FFC42C" stop-opacity="0" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="aqlkonu3vA">
-            <stop stop-color="#FFC62C" stop-opacity="0" offset="0%"/>
-            <stop stop-color="#FF6663" stop-opacity=".3" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="24.492%" y1="9.15%" x2="58.635%" y2="100%" id="wkogocufwB">
-            <stop stop-color="#263E7B" offset="0%"/>
-            <stop stop-color="#253867" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="101.462%" y1="124.814%" x2="19.296%" y2="50%" id="pdas88f3lE">
-            <stop stop-color="#243B74" offset="0%"/>
-            <stop stop-color="#2357BD" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="69.68%" y1="5.498%" x2="24.256%" y2="96.98%" id="t5ezqjzkaF">
-            <stop stop-color="#0075C4" offset="0%"/>
-            <stop stop-color="#005F9F" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="m5b2clgzlH">
-            <stop stop-color="#348B70" offset="0%"/>
-            <stop stop-color="#288384" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="84.661%" y1="26.487%" x2="50%" y2="58.486%" id="thyx1mi5hG">
-            <stop stop-color="#52D5B3" offset="0%"/>
-            <stop stop-color="#2F8977" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="34.164%" y1="4.57%" x2="82.543%" y2="143.256%" id="48qeiozz2I">
-            <stop stop-color="#E2FFF2" offset="0%"/>
-            <stop stop-color="#3EAF7D" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="76.207%" y1="4.524%" x2="5.77%" y2="136.106%" id="r4mim3vrfJ">
-            <stop stop-color="#F3ECD7" offset="0%"/>
-            <stop stop-color="#FFD24B" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="fqv2xsmtxK">
-            <stop stop-color="#52C761" offset="0%"/>
-            <stop stop-color="#51A256" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="ha6z8uam8L">
-            <stop stop-color="#FFE56C" offset="0%"/>
-            <stop stop-color="#FFC73A" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="9405biog1M">
-            <stop stop-color="#89E99B" offset="0%"/>
-            <stop stop-color="#53CE63" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="v1x4ocgd3N">
-            <stop stop-color="#51C861" offset="0%"/>
-            <stop stop-color="#51A256" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="2oxz7tuj2O">
-            <stop stop-color="#D2A732" offset="0%"/>
-            <stop stop-color="#A17C1D" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="gjzz4cvncQ">
-            <stop stop-color="#348B70" offset="0%"/>
-            <stop stop-color="#288384" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="84.661%" y1="26.487%" x2="50%" y2="58.486%" id="t09k17sy3P">
-            <stop stop-color="#52D5B3" offset="0%"/>
-            <stop stop-color="#2F8977" offset="100%"/>
-        </linearGradient>
-        <linearGradient x1="34.164%" y1="4.57%" x2="101.204%" y2="265.256%" id="uaaoloz60R">
-            <stop stop-color="#DEFFF0" offset="0%"/>
-            <stop stop-color="#3EAF7D" offset="100%"/>
-        </linearGradient>
-        <path id="2oh40rkdka" d="M0 0h768v72H0z"/>
-        <path d="M10.623 44.566c-7.19-5.77-13.431-18.727-9.295-31.037 4.085-12.22 18.46-17.497 29.61-10.213 10.98 7.358 11.03 14.663 26.292 17.906 15.16 3.305 20.9 23.4 6.905 31.037-14.108 7.764-46.326-1.938-53.512-7.693z" id="okqxruqc7f"/>
-        <path d="M62.944 52.854c-11.35 5.147-32.317.706-44.44-4.16-3.082-2.792-6.093-6.098-8.944-9.964-5.085-6.8-5.75-13.432-1.991-19.896h22.706c4.497 3.822 8.17 6.563 11.021 8.224 4.36 2.422 17.316 4.66 22.042 9.948 3.955 4.485 2.801 10.893-.394 15.848z" id="ynse5dl70h"/>
-        <path d="M8.233 47.219c-3.551-.35-5.543-1.279-5.976-2.786-.619-2.295-2.853-4.867-2.124-5.836.824-.885 1.978 2.062 2.655 2.388.896.359.518-9.696 3.851-7.163 3.334 2.616 2.558 4.848 2.125 7.826a84.416 84.416 0 0 0-.531 5.57z" id="7a2p9s6ibj"/>
-        <path d="M37.445 37.138c-6.631 0-28.923 4.929-30.142 5.173-1.274.294-1.866 3.545 0 4.642 1.81 1.18 24.636.684 26.026.663 1.484.021 10.805-10.478 4.116-10.478z" id="tuhv8e6m7l"/>
-        <path d="M37.445 37.138h37.578c3.657 0 2.67 5.637 0 5.704-1.761-.012-23.104 3.171-23.104 4.244 0 .715.885 6.109 2.655 16.182l-17.129 2.785c-4.68-6.876-8.365-12.476-8.365-17.375 0-4.9 1.936-11.54 8.365-11.54z" id="elu74fr56n"/>
-        <path d="M38.64 67.512c-1.887 4.96-2.348 13.133 0 16.314 2.33 3.2 15.092 18.299 16.997 19.233 1.903.996 4.78-1.203 4.78-3.316 0-2.157-6.58-14.599-11.685-19.63-5.108-4.866-8.223-17.409-10.092-12.601z" id="ya8y778jfp"/>
-        <path d="M20.98 71.756c.997 5.395 9.097 8.755 24.3 10.08 1.033-.123 1.785-.742 2.257-1.856.83-1.731.843-3.01.797-3.05 8.338.04 11.748-10.553 6.108-16.978-5.568-6.348-34.772 3.668-33.462 11.804z" id="7r6n8f2p7u"/>
-        <path d="M50.06 18.834c2.971.053 4.21 1.335 3.718 3.847-.47 2.827-1.5 5.463-3.851 5.173-2.551 4.684-5.653 7.56-11.685 7.56-5.968 0-8.848-5.675-9.295-8.754-1.164-3.123-.053-14.26.398-15.386.858-2.676 6.328 2.174 12.35 3.98 3.912 1.308 6.7 2.502 8.365 3.58z" id="lfs4twtkgw"/>
-        <path d="M75.023 42.842c-3.184 0-3.69-9.75-2.39-9.816 1.327.066.466 3.934 1.726 3.98 1.274-.046.57-9.201 3.984-8.622 3.353.638 3.752 7.398 2.125 10.478-1.605 3.052-2.378 3.98-5.445 3.98z" id="3x1f6l92vz"/>
-        <path d="m33.126 32.32-13.579-1.012c-.1 0-.197-.018-.297-.032l-.095-.015-.2-.032-.115-.025-.18-.039-.122-.032-.173-.05-.124-.038-.17-.057-.125-.045-.17-.066-.12-.052-.173-.077c-.039-.018-.077-.034-.116-.055l-.186-.093-.1-.052a2.705 2.705 0 0 1-.227-.131l-.047-.016a5.082 5.082 0 0 1-.277-.173l-.084-.054-.19-.132-.105-.075c-.054-.04-.111-.08-.165-.122l-.112-.086-.154-.125-.111-.093-.15-.13-.109-.097-.129-.123-.159-.152-.116-.115a5.17 5.17 0 0 1-.154-.161l-.113-.12-.15-.173a2.689 2.689 0 0 1-.107-.12l-.154-.189-.093-.115-.168-.227-.072-.095a11.715 11.715 0 0 1-.227-.325l-.037-.054a19.422 19.422 0 0 1-.181-.28c-.025-.04-.048-.081-.073-.12-.045-.075-.09-.15-.134-.227l-.077-.14c-.025-.048-.08-.14-.118-.211-.038-.07-.05-.102-.077-.152a5.936 5.936 0 0 1-.104-.209l-.075-.159-.109-.21a4.953 4.953 0 0 0-.07-.162 2.333 2.333 0 0 1-.086-.227c-.028-.084-.044-.109-.064-.163l-.082-.227-.054-.161c-.027-.077-.05-.156-.075-.227l-.048-.152a11.286 11.286 0 0 1-.07-.263c-.011-.043-.025-.086-.036-.13-.032-.133-.064-.265-.091-.399L8.639 6.901a9.131 9.131 0 0 1-.102-.585c0-.064-.013-.125-.02-.189-.016-.127-.03-.256-.041-.38 0-.073 0-.144-.011-.216 0-.114-.012-.227-.012-.34v-.538c0-.096 0-.14.016-.209 0-.109.023-.213.036-.318 0-.063.016-.127.028-.19.018-.114.043-.227.068-.336 0-.05.018-.098.03-.145.038-.157.081-.311.13-.454 0-.02.017-.036.024-.057.043-.127.091-.251.142-.374.052-.122.1-.222.143-.3a3.56 3.56 0 0 1 .213-.374l.064-.095c.048-.073.098-.143.15-.213l.086-.107c.05-.061.1-.12.152-.177l.095-.102c.032-.032.11-.109.166-.161l.1-.09.19-.153.093-.07c.098-.072.198-.138.302-.2l-8.44 4.867c-.104.06-.204.124-.301.195l-.093.07c-.064.048-.13.098-.19.152l-.103.09-.163.16c-.032.034-.066.068-.098.104a7.83 7.83 0 0 0-.15.177c-.05.061-.059.07-.086.107a5.38 5.38 0 0 0-.15.213c-.02.032-.043.061-.063.095a3.844 3.844 0 0 0-.213.374C.585 7.221.54 7.31.5 7.4l-.013.032c-.052.12-.1.247-.145.374 0 .018-.014.037-.02.057-.05.147-.094.3-.132.454-.012.047-.02.097-.032.147a6.252 6.252 0 0 0-.066.336c-.011.064-.018.127-.027.19a7.047 7.047 0 0 0-.037.316c0 .07-.01.14-.015.209 0 .106-.012.213-.014.322v.227c0 .11 0 .227.011.34 0 .07 0 .143.012.227 0 .125.025.254.04.381 0 .064 0 .125.02.188.028.192.062.388.103.586l3.421 16.636c.028.134.06.266.091.397l.034.13.073.265.047.152c.023.08.048.159.075.227l.055.161.081.227c.02.054.041.109.064.163.023.055.057.143.086.216.03.072.045.106.07.16l.096.212.075.156c.034.07.068.141.104.211l.077.15.116.213.08.141c.042.075.088.15.133.227l.073.118c.059.095.12.19.183.284l.034.052c.073.109.15.227.227.324l.07.093c.057.075.112.15.168.227l.096.116c.05.063.102.125.154.188l.104.12c.05.06.103.116.152.173l.114.12.152.161.118.116.159.152c.02.022.042.043.065.063l.064.06.109.097.15.13.11.092.155.125.111.086.166.123.104.075c.064.045.127.088.19.129l.085.057c.09.059.183.118.276.172l.046.027.227.132.102.052c.059.032.12.063.184.093l.115.054.173.078.12.05c.057.024.113.045.17.068l.125.045.17.057.125.038.17.048.123.032c.06.015.12.03.181.04l.116.025.197.032.098.016c.1 0 .197.023.297.03l13.578 1.007a4.145 4.145 0 0 0 2.416-.515l8.44-4.867a4.145 4.145 0 0 1-2.4.495z" id="0lsw7fzhqC"/>
-        <filter x="-38%" y="-36.8%" width="176%" height="173.6%" filterUnits="objectBoundingBox" id="loh5jfkkcD">
-            <feGaussianBlur stdDeviation="6.5" in="SourceAlpha" result="shadowBlurInner1"/>
-            <feOffset dx="14" dy="-10" in="shadowBlurInner1" result="shadowOffsetInner1"/>
-            <feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"/>
-            <feColorMatrix values="0 0 0 0 0.117647059 0 0 0 0 0.321568627 0 0 0 0 0.725490196 0 0 0 0.430732354 0" in="shadowInnerInner1"/>
-        </filter>
-        <rect id="w3atceajtr" x="0" y="0" width="7.702" height="11.539" rx="3.851"/>
-    </defs>
-    <g fill="none" fill-rule="evenodd">
-        <mask id="8e1knp26yc" fill="#fff">
-            <use xlink:href="#2oh40rkdka"/>
-        </mask>
-        <path d="M1153-22.28c-17.701 126.926-90.423 176.371-218.164 148.335C743.224 84.002 818.675 231 531 231V-85h622v62.72z" fill="url(#x4z7rncnjb)" mask="url(#8e1knp26yc)" transform="rotate(180 842 73)"/>
-        <path d="M1153-17.28c-17.701 126.926-90.423 176.371-218.164 148.335C743.224 89.002 818.675 236 531 236V-80h622v62.72z" fill="url(#eqs2eehfbd)" mask="url(#8e1knp26yc)" transform="rotate(180 842 78)"/>
-        <path d="M531-2.28c-17.701 126.926-90.423 176.371-218.164 148.335C121.224 104.002 196.675 251-91 251V-65h622v62.72z" fill="url(#ac2qp08yee)" mask="url(#8e1knp26yc)" transform="rotate(180 220 93)"/>
-        <path d="M767.373 93.19c-.217-.04-.435-.077-.473-.357.09-.174.177-.35.271-.523 1-1.82 1.537-3.76 1.5-5.85-.007-.358-.03-.551-.442-.285-.225.146-.512.162-.793.167-1.155.02-2.24-.293-3.301-.698-2.43-.928-4.673-2.18-6.637-3.91-.7-.603-1.336-1.265-1.66-2.154-.262-.72-.039-1.095.692-1.322.527-.164 1.038-.02 1.555.037.211.03.43.032.633.091 3.728 1.076 7.071 2.792 9.606 5.848.058.07.1.192.223.12.098-.058.083-.159.064-.261-.13-.691-.232-1.388-.384-2.074-.747-3.382-2.19-6.542-3.11-9.87-.05-.178-.12-.346-.365-.21-.583.322-1.22.206-1.84.217-1.957-.386-3.777-1.14-5.505-2.118-1.741-.986-3.42-2.068-4.672-3.682-.407-.525-.896-1.105-.524-1.809.349-.66 1.07-.565 1.687-.526 1.201.076 2.337.447 3.438.913 2.432 1.029 4.695 2.332 6.599 4.2.19.187.359.395.618.68-.196-1.26-.124-2.41-.118-3.558.014-2.457.64-4.803 1.326-7.136.055-.189.123-.373.187-.559.097-.284.054-.426-.292-.512-1.011-.253-1.658-1.048-2.265-1.8-1.947-2.408-3.334-5.116-4.051-8.15a7.033 7.033 0 0 1-.192-1.985c.058-1.137.836-1.57 1.808-.956.887.56 1.58 1.342 2.192 2.19 1.798 2.513 3.142 5.234 3.736 8.444.2-.549.35-.95.493-1.354.726-2.05 1.47-4.095 1.898-6.237.036-.18.091-.326-.066-.483-.769-.772-1.01-1.783-1.27-2.796-.224-.872-.247-1.772-.436-2.646-.037-2.1-.063-4.201.462-6.26.185-.725.422-1.433.803-2.082.583-.992 1.472-.997 2.03.013.625 1.13.93 2.353 1.062 3.643.106 1.034.246 2.06.219 3.104-.015.567-.209 1.122-.107 1.696-.037 1.609-.346 3.154-1.07 4.6-.096.19-.195.424-.36.526-.605.374-.695.983-.842 1.595-.464 1.93-1.132 3.795-1.79 5.664-.062.175-.179.348-.09.653.64-.604 1.249-1.17 1.925-1.651 2.186-1.553 4.497-2.84 7.148-3.408.43-.092.861-.085 1.285-.045.79.076 1.095.61.854 1.387-.187.6-.567 1.07-.984 1.513-2.408 2.553-5.325 4.273-8.646 5.329-.13.041-.256.095-.384.143-.75.038-1.504.28-2.251-.055-.216-.096-.262.127-.306.261a36.205 36.205 0 0 0-1.307 5.417c-.251 1.516-.122 3.053-.129 4.582 0 .212-.015.428.215.604.076-.12.148-.228.217-.34a15.521 15.521 0 0 1 2.487-3.035c1.03-.988 2.154-1.868 3.311-2.702 1.133-.616 2.22-1.333 3.511-1.594.171-.034.347-.061.52-.064.923-.013 1.311.508 1.08 1.41-.277 1.08-.925 1.955-1.613 2.775-1.91 2.275-4.16 4.136-6.86 5.407-.582.274-1.177.535-1.836.561-.323.013-.33.155-.257.422.392 1.42.918 2.795 1.39 4.188.73 2.152 1.499 4.292 1.864 6.536.251.072.282-.126.365-.241 2.018-2.787 4.586-4.909 7.676-6.389.581-.278 1.197-.488 1.855-.495.892-.008 1.287.506 1.071 1.374-.274 1.101-.935 1.993-1.638 2.828-1.911 2.273-4.163 4.133-6.864 5.4-.6.281-1.213.562-1.897.552-.398-.006-.377.252-.367.514.082 2.335-.68 4.436-1.767 6.446-.027.05-.076.088-.115.132" fill="#454E90" mask="url(#8e1knp26yc)" transform="matrix(-1 0 0 1 1532.158 0)"/>
-        <path d="M729.373 93.19c-.217-.04-.435-.077-.473-.357.09-.174.177-.35.271-.523 1-1.82 1.537-3.76 1.5-5.85-.007-.358-.03-.551-.442-.285-.225.146-.512.162-.793.167-1.155.02-2.24-.293-3.301-.698-2.43-.928-4.673-2.18-6.637-3.91-.7-.603-1.336-1.265-1.66-2.154-.262-.72-.039-1.095.692-1.322.527-.164 1.038-.02 1.555.037.211.03.43.032.633.091 3.728 1.076 7.071 2.792 9.606 5.848.058.07.1.192.223.12.098-.058.083-.159.064-.261-.13-.691-.232-1.388-.384-2.074-.747-3.382-2.19-6.542-3.11-9.87-.05-.178-.12-.346-.365-.21-.583.322-1.22.206-1.84.217-1.957-.386-3.777-1.14-5.505-2.118-1.741-.986-3.42-2.068-4.672-3.682-.407-.525-.896-1.105-.524-1.809.349-.66 1.07-.565 1.687-.526 1.201.076 2.337.447 3.438.913 2.432 1.029 4.695 2.332 6.599 4.2.19.187.359.395.618.68-.196-1.26-.124-2.41-.118-3.558.014-2.457.64-4.803 1.326-7.136.055-.189.123-.373.187-.559.097-.284.054-.426-.292-.512-1.011-.253-1.658-1.048-2.265-1.8-1.947-2.408-3.334-5.116-4.051-8.15a7.033 7.033 0 0 1-.192-1.985c.058-1.137.836-1.57 1.808-.956.887.56 1.58 1.342 2.192 2.19 1.798 2.513 3.142 5.234 3.736 8.444.2-.549.35-.95.493-1.354.726-2.05 1.47-4.095 1.898-6.237.036-.18.091-.326-.066-.483-.769-.772-1.01-1.783-1.27-2.796-.224-.872-.247-1.772-.436-2.646-.037-2.1-.063-4.201.462-6.26.185-.725.422-1.433.803-2.082.583-.992 1.472-.997 2.03.013.625 1.13.93 2.353 1.062 3.643.106 1.034.246 2.06.219 3.104-.015.567-.209 1.122-.107 1.696-.037 1.609-.346 3.154-1.07 4.6-.096.19-.195.424-.36.526-.605.374-.695.983-.842 1.595-.464 1.93-1.132 3.795-1.79 5.664-.062.175-.179.348-.09.653.64-.604 1.249-1.17 1.925-1.651 2.186-1.553 4.497-2.84 7.148-3.408.43-.092.861-.085 1.285-.045.79.076 1.095.61.854 1.387-.187.6-.567 1.07-.984 1.513-2.408 2.553-5.325 4.273-8.646 5.329-.13.041-.256.095-.384.143-.75.038-1.504.28-2.251-.055-.216-.096-.262.127-.306.261a36.205 36.205 0 0 0-1.307 5.417c-.251 1.516-.122 3.053-.129 4.582 0 .212-.015.428.215.604.076-.12.148-.228.217-.34a15.521 15.521 0 0 1 2.487-3.035c1.03-.988 2.154-1.868 3.311-2.702 1.133-.616 2.22-1.333 3.511-1.594.171-.034.347-.061.52-.064.923-.013 1.311.508 1.08 1.41-.277 1.08-.925 1.955-1.613 2.775-1.91 2.275-4.16 4.136-6.86 5.407-.582.274-1.177.535-1.836.561-.323.013-.33.155-.257.422.392 1.42.918 2.795 1.39 4.188.73 2.152 1.499 4.292 1.864 6.536.251.072.282-.126.365-.241 2.018-2.787 4.586-4.909 7.676-6.389.581-.278 1.197-.488 1.855-.495.892-.008 1.287.506 1.071 1.374-.274 1.101-.935 1.993-1.638 2.828-1.911 2.273-4.163 4.133-6.864 5.4-.6.281-1.213.562-1.897.552-.398-.006-.377.252-.367.514.082 2.335-.68 4.436-1.767 6.446-.027.05-.076.088-.115.132" fill="#454E90" mask="url(#8e1knp26yc)" transform="matrix(-1 0 0 1 1456.158 0)"/>
-        <path d="M751.02 102.19c-.325-.058-.652-.113-.71-.523.136-.256.266-.515.407-.767 1.501-2.67 2.305-5.515 2.249-8.582-.01-.524-.045-.807-.661-.416-.338.214-.769.238-1.19.245-1.733.028-3.362-.43-4.953-1.024-3.643-1.361-7.008-3.199-9.954-5.734-1.051-.886-2.005-1.856-2.49-3.16-.394-1.055-.059-1.606 1.037-1.939.791-.24 1.557-.029 2.333.055.317.042.646.047.95.133 5.591 1.578 10.606 4.095 14.408 8.577.088.103.151.281.335.175.147-.084.124-.232.096-.383-.195-1.013-.348-2.035-.575-3.041-1.12-4.96-3.285-9.595-4.666-14.475-.074-.261-.18-.509-.547-.31-.875.473-1.83.304-2.76.32-2.936-.566-5.666-1.673-8.257-3.107-2.613-1.447-5.132-3.033-7.01-5.401-.61-.77-1.342-1.62-.785-2.652.524-.968 1.605-.829 2.53-.772 1.803.111 3.505.656 5.157 1.34 3.648 1.508 7.043 3.419 9.898 6.16.285.274.54.578.928.997-.294-1.847-.186-3.534-.177-5.218.021-3.605.96-7.046 1.99-10.468.082-.276.184-.547.28-.82.145-.415.08-.623-.438-.75-1.517-.371-2.487-1.536-3.398-2.639-2.92-3.532-5-7.504-6.077-11.954a10.095 10.095 0 0 1-.288-2.911c.087-1.669 1.255-2.303 2.713-1.402 1.33.822 2.368 1.967 3.288 3.212 2.697 3.685 4.712 7.676 5.604 12.384.3-.805.523-1.394.738-1.986 1.09-3.007 2.207-6.006 2.848-9.148.054-.263.137-.478-.098-.708-1.154-1.132-1.515-2.615-1.906-4.1-.336-1.28-.371-2.6-.654-3.882-.056-3.081-.094-6.162.693-9.18.277-1.064.633-2.102 1.204-3.054.875-1.456 2.208-1.463 3.046.019.938 1.657 1.393 3.45 1.592 5.343.16 1.517.37 3.021.329 4.552-.023.832-.313 1.646-.16 2.487-.055 2.36-.52 4.626-1.607 6.747-.143.28-.29.622-.539.772-.906.549-1.043 1.44-1.263 2.339-.695 2.83-1.697 5.566-2.684 8.306-.093.258-.269.511-.135.959.96-.887 1.873-1.718 2.887-2.422 3.28-2.277 6.745-4.164 10.723-4.998.643-.135 1.291-.125 1.926-.066 1.186.11 1.643.894 1.281 2.034-.28.88-.85 1.57-1.476 2.22-3.612 3.743-7.987 6.266-12.97 7.815-.194.06-.382.14-.574.21-1.127.056-2.257.412-3.377-.08-.323-.142-.392.185-.459.383-.875 2.595-1.504 5.252-1.96 7.944-.378 2.223-.183 4.478-.194 6.72-.001.312-.022.628.322.886.114-.175.223-.335.326-.498 1.041-1.648 2.31-3.12 3.73-4.452 1.544-1.449 3.231-2.74 4.968-3.963 1.698-.903 3.329-1.955 5.266-2.337.256-.05.52-.09.78-.094 1.384-.02 1.966.745 1.62 2.066-.416 1.585-1.387 2.869-2.42 4.072-2.864 3.336-6.24 6.066-10.289 7.93-.874.402-1.767.785-2.755.823-.484.018-.495.226-.385.619.587 2.083 1.376 4.1 2.085 6.143 1.096 3.155 2.248 6.294 2.795 9.585.377.105.423-.184.549-.354 3.026-4.086 6.877-7.199 11.514-9.37.871-.408 1.795-.716 2.782-.726 1.338-.012 1.93.743 1.606 2.015-.412 1.616-1.402 2.923-2.457 4.148-2.867 3.334-6.245 6.062-10.296 7.92-.9.412-1.82.824-2.846.81-.596-.01-.564.37-.55.754.123 3.423-1.019 6.505-2.651 9.453-.04.073-.113.13-.171.194" fill="#6B73AB" mask="url(#8e1knp26yc)"/>
-        <g mask="url(#8e1knp26yc)">
-            <g transform="translate(646.05 3)">
-                <use fill="#464D89" xlink:href="#okqxruqc7f"/>
-                <use fill="url(#9iaagghgbg)" xlink:href="#okqxruqc7f"/>
-                <use fill="url(#7ted8bby6i)" xlink:href="#ynse5dl70h"/>
-            </g>
-            <g transform="translate(626 3)">
-                <use fill="#FFC62C" xlink:href="#7a2p9s6ibj"/>
-                <use fill="url(#wtnv1zwigk)" xlink:href="#7a2p9s6ibj"/>
-            </g>
-            <g transform="translate(626 3)">
-                <use fill="#EFEFFF" xlink:href="#tuhv8e6m7l"/>
-                <use fill="url(#r65pzzurym)" xlink:href="#tuhv8e6m7l"/>
-            </g>
-            <g transform="translate(626 3)">
-                <use fill="#EFEFFF" xlink:href="#elu74fr56n"/>
-                <use fill="url(#yf5gdjpoqo)" xlink:href="#elu74fr56n"/>
-            </g>
-            <g fill-rule="nonzero">
-                <path d="M664.772 52.254c-.46-2.276-.024-3.77-.024-3.77s-.116.91.8 2.375c-.01 1.817.347 2.765.347 2.765l.073-.054-.073.064s-.544-.444-1.123-1.38zM666.94 51.932c.22.222.426.375.574.448l-.002-.001s.166.06.196.02c.203-.215.252-.616.117-1.37-.774-.441-.872-1.13-.872-1.13s-.14.956-.013 2.033z" fill="#364FDE"/>
-                <path d="M664.748 48.484s-.637 2.182.441 5.289c.03.09 0 .19-.078.249l-1.137.797c-.108.08-.265.03-.314-.1-.303-.826-1.136-3.565-.293-6.563.039-.12.166-.19.284-.14l1.097.468z" fill="#56D8FF"/>
-                <path d="m666.924 52.867-1.03.757s-.548-1.455-.264-4.213a.213.213 0 0 1 .323-.16l1 .648s-.196 1.344.088 2.639c.03.13-.02.259-.117.329zM668.825 51.183l-.95-.627c-.06-.04-.148.02-.128.09.225 1.006.196 1.504-.04 1.753-.029.04-.195-.02-.195-.02.156.08.196.04.196.04.156-.12.744-.548 1.117-.807.147-.11.147-.329 0-.429z" fill="#667DFF"/>
-            </g>
-            <g transform="translate(626 3)">
-                <use fill="#464D89" xlink:href="#ya8y778jfp"/>
-                <use fill="url(#40qi6pxfaq)" xlink:href="#ya8y778jfp"/>
-            </g>
-            <g transform="translate(662.117 33.241)">
-                <use fill="#FFC62C" xlink:href="#w3atceajtr"/>
-                <use fill="url(#cknulgfsvs)" xlink:href="#w3atceajtr"/>
-            </g>
-            <path d="M7.702 6.715c-1.543.723-3.363 1.11-5.577 1.11A8.675 8.675 0 0 1 0 7.569V3.846A3.849 3.849 0 0 1 3.85 0a3.849 3.849 0 0 1 3.852 3.846v2.87z" fill="url(#uwqzm8w77t)" transform="translate(662.117 33.241)"/>
-            <g transform="translate(626 3)">
-                <use fill="#464D89" xlink:href="#7r6n8f2p7u"/>
-                <use fill="url(#u1e053vxjv)" xlink:href="#7r6n8f2p7u"/>
-            </g>
-            <g transform="translate(626 3)">
-                <use fill="#FFC62C" xlink:href="#lfs4twtkgw"/>
-                <use fill="url(#qw72fgzeyx)" xlink:href="#lfs4twtkgw"/>
-            </g>
-            <path d="M29.76 15.784h16.698c2.172 0 4.133 2.702 4.133 6.035s-1.96 6.035-4.133 6.035H29.76c-2.172 0-4.133-2.702-4.133-6.035s1.961-6.035 4.133-6.035z" fill="url(#qwkvpwu3uy)" transform="translate(626 3)"/>
-            <path d="M655.76 17.457h16.698c2.172 0 4.133 2.702 4.133 6.035s-1.96 6.035-4.133 6.035H655.76c-2.172 0-4.133-2.702-4.133-6.035s1.961-6.035 4.133-6.035z" fill="#D6DFEA"/>
-            <path d="M653.731 19.049h18.1c2.355 0 2.768 1.99 2.768 4.443 0 2.454-.413 4.444-2.767 4.444H653.73c-2.355 0-2.767-1.99-2.767-4.444 0-2.454.412-4.443 2.767-4.443z" fill="#1F1845"/>
-            <path d="m673.802 20.375 1.516.076a1.2 1.2 0 0 1 1.14 1.199v.184l-2.656 2.123v-3.582z" fill="#1F1845"/>
-            <path d="M660.122 20.508h3.858a3.05 3.05 0 0 1 0 6.101h-3.858a3.05 3.05 0 0 1 0-6.101z" fill="#7BC1EB" opacity=".3"/>
-            <path d="M660.124 22.498h3.854a1.061 1.061 0 0 1 0 2.122h-3.854a1.061 1.061 0 0 1 0-2.122z" fill="#7BC1EB"/>
-            <path d="M657.683 71.235a.199.199 0 1 1 .105-.385c2.077.563 3.9 1.521 6.368 3.202.55.375 2.475 1.725 2.52 1.756 3.044 2.114 5.184 3.313 7.853 4.198a.199.199 0 1 1-.125.377c-2.713-.898-4.883-2.114-7.956-4.249-.046-.031-1.969-1.38-2.516-1.753-2.434-1.658-4.222-2.598-6.249-3.146z" fill="#FFF" fill-rule="nonzero"/>
-            <g transform="translate(626 3)">
-                <use fill="#FFC62C" xlink:href="#3x1f6l92vz"/>
-                <use fill="url(#aqlkonu3vA)" xlink:href="#3x1f6l92vz"/>
-            </g>
-        </g>
-        <g fill-rule="nonzero" mask="url(#8e1knp26yc)">
-            <g transform="translate(134.777 11)">
-                <use fill="url(#wkogocufwB)" xlink:href="#0lsw7fzhqC"/>
-                <use fill="#000" filter="url(#loh5jfkkcD)" xlink:href="#0lsw7fzhqC"/>
-                <path stroke="url(#pdas88f3lE)" d="m8.458 2.395-.066.168-.07.19a.588.588 0 0 0-.044.119c-.05.147-.094.303-.131.455l-.009.033a1.05 1.05 0 0 0-.033.166 5.382 5.382 0 0 0-.065.324l-.006.033a1.44 1.44 0 0 0-.027.201l-.008.054a2.307 2.307 0 0 0-.028.248 1.384 1.384 0 0 0-.018.267v.537c0 .065.003.13.007.196.002.048.005.096.005.145l-.001.044.007.033c.007.047.005.092.005.138v.024a13.218 13.218 0 0 0 .054.493c.003.018.007.035.007.053l-.001.022A9.31 9.31 0 0 0 8.15 7l3.407 16.625c.026.126.055.25.085.377l.012.048.037.134c.024.092.048.183.074.276l.053.168c.012.033.023.067.034.103l.041.125.058.17.084.234c.01.028.02.05.03.074.008.017.015.035.026.068.034.104.076.213.107.28.025.056.048.108.071.164l.115.222.073.155c.037.078.085.175.115.23l.02.04a2.176 2.176 0 0 0 .118.221l.053.095.072.13.012.022a7.944 7.944 0 0 0 .15.255l.035.058.032.053.191.294.038.056c.078.116.156.227.244.349l.068.09.174.234.102.127.068.083c.035.043.068.084.09.109.037.046.078.091.119.135l.15.173.116.122c.054.06.112.12.169.177l.123.124.161.153.135.128.12.108.156.134.118.099.162.13.107.084.12.089.065.048.111.08.197.135.082.054c.115.077.233.148.35.216l.042.013.072.045.136.074.108.057.181.09c.033.018.066.033.097.047l.043.02.177.079.13.056.189.073.131.047.182.061.138.043.18.052.139.036.19.04.128.028.21.034.1.017.067.009c.096.014.19.026.286.028l13.309.992-5.994 3.456a3.647 3.647 0 0 1-1.885.467l-.249-.015-13.581-1.007c-.03-.002-.06-.007-.09-.01a2.087 2.087 0 0 0-.195-.02l-.064-.01-.185-.03-.11-.024a2.087 2.087 0 0 1-.154-.034l-.113-.03-.164-.045-.113-.035-.159-.053-.112-.041-.053-.021-.102-.041-.114-.048-.158-.07-.118-.056a3.209 3.209 0 0 1-.167-.084l-.09-.046-.209-.122-.05-.03a6.488 6.488 0 0 1-.25-.155l-.093-.063a4.2 4.2 0 0 1-.17-.115l-.098-.07-.156-.116-.104-.08-.147-.12-.106-.087-.143-.124-.102-.091-.07-.066a.369.369 0 0 1-.041-.04l-.167-.16-.111-.108-.145-.154-.109-.115-.048-.054-.095-.108-.097-.112-.05-.06c-.032-.039-.065-.078-.103-.127l-.087-.105-.027-.037c-.046-.062-.09-.124-.137-.184l-.077-.102c-.061-.078-.122-.17-.18-.259l-.02-.028-.04-.061a7.034 7.034 0 0 1-.17-.264l-.069-.11-.05-.087c-.028-.046-.055-.09-.078-.132l-.076-.133-.11-.204-.078-.15c-.034-.066-.066-.133-.097-.197l-.07-.147-.097-.214-.005-.01c-.02-.042-.033-.072-.057-.13l-.04-.1-.025-.065-.023-.055c-.02-.049-.038-.098-.054-.14l-.079-.218-.059-.176a1.838 1.838 0 0 1-.065-.195l-.046-.15-.07-.252-.03-.119c-.031-.126-.062-.251-.088-.38L.676 11.685a9.014 9.014 0 0 1-.107-.624.031.031 0 0 1-.009-.014c-.004-.012.004-.024.004-.035v-.031L.56 10.95a6.22 6.22 0 0 0-.015-.11l-.015-.105-.007-.104v-.034a.693.693 0 0 1-.005-.033c-.008-.06-.007-.11-.007-.16v-.027l-.002-.023c-.01-.097-.009-.195-.009-.29v-.222l.006-.121c.003-.062.007-.124.008-.186 0-.015.002-.03.004-.045.005-.053.01-.106.011-.159.009-.093.02-.184.032-.274l.01-.065c.004-.035.008-.07.015-.11.017-.1.038-.206.06-.307l.017-.077.013-.06c.035-.141.074-.28.12-.415l-.005.012.018-.04.015-.05c.038-.107.079-.213.123-.316l.015-.033c.033-.08.074-.158.114-.235.028-.056.056-.112.087-.166.032-.056.065-.11.1-.164l.022-.033.01-.016.03-.045c.042-.064.108-.155.132-.187l.032-.04.042-.051.046-.056.092-.108.052-.055.026-.027.148-.144.093-.083c.051-.045.106-.086.16-.127l6.31-3.664z" stroke-linejoin="square"/>
-            </g>
-            <path d="m12.805.5.265.012 13.578 1.005c1.543.114 3.088 1 4.35 2.31 1.292 1.341 2.289 3.136 2.684 5.067l3.423 16.636c.385 1.872.136 3.528-.615 4.684a3.51 3.51 0 0 1-1.413 1.27c-.557.27-1.204.39-1.919.337L19.584 30.81c-1.543-.115-3.088-1-4.35-2.31-1.291-1.342-2.289-3.137-2.684-5.07L9.13 6.8c-.388-1.87-.14-3.524.608-4.678.361-.557.838-.993 1.413-1.271.557-.27 1.205-.391 1.92-.34z" stroke="#6097FF" fill="url(#t5ezqjzkaF)" transform="translate(134.777 11)"/>
-            <g fill="#F9F9F9">
-                <path d="M166.667 27.94c.657.982.935 2.535.672 3.71-.298 1.28-1.242 2.159-2.688 2.467a4.958 4.958 0 0 1-.87.076 6.853 6.853 0 0 1-1.145-.065 5.329 5.329 0 0 1-2.844-1.58c-.274-.301-.823-1.11-.8-1.164l.232-.186.926-.68.696-.517.197.265c.3.427.671.798 1.1 1.096a2.63 2.63 0 0 0 1.292.322c.518-.009.99-.185 1.27-.517a1.15 1.15 0 0 0 .259-.922 1.39 1.39 0 0 0-.274-.776c-.243-.332-.693-.6-1.94-1.19-1.431-.647-2.052-1.065-2.658-1.712a5.027 5.027 0 0 1-.874-1.513c-.143-.441-.281-1.524-.23-1.96.129-1.53 1.026-2.615 2.421-2.945.235-.05.475-.073.715-.071.434-.015.869.024 1.293.114a3.63 3.63 0 0 1 1.745 1.078c.274.301.688.829.728.966 0 .045-1.05.957-1.694 1.465-.043 0-.153-.12-.268-.301-.398-.559-.776-.798-1.324-.834h-.13c-.717.011-1.141.491-1.067 1.245.016.203.076.4.176.578.218.416.572.663 1.647 1.164 1.977.905 2.856 1.507 3.437 2.387zM152.626 20.399c2.54-.043 4.631-.071 4.631-.048.029.014.083.57.15 1.258l.12 1.22-3.434.058 1.106 11.285-2.435.042-1.102-11.291-3.43.058-.122-1.244-.1-1.243 4.616-.095z"/>
-            </g>
-            <g>
-                <path d="m10.663.525 15.141 5.017c2.568 1.5 2.877 1.715 3.036 1.861l.03.028c.195.19.335.33.462.468.139.156.247.28.345.399l1.863 17.688-6.44 7.609.982-14.71c-.12-1.28-.128-1.303-.133-1.325-1.978-3.983-2.125-4.134-2.262-4.287a8.107 8.107 0 0 0-.521-.55c-.258-.241-.451-.41-.658-.58l-16.41-6.31-1.614-.23 3.36-4.194 2.82-.884z" stroke="url(#thyx1mi5hG)" fill="url(#m5b2clgzlH)" transform="translate(129 27.142)"/>
-                <path d="M19.557 11.035c3.31 1.148 6.012 4.66 6.032 7.84l.091 13.078c.023 3.176-2.643 4.832-5.953 3.684L6.123 30.923c-3.31-1.148-6.012-4.66-6.032-7.84L0 10.004c-.023-3.176 2.643-4.83 5.953-3.684l13.604 4.714z" fill="url(#48qeiozz2I)" transform="translate(129 27.142)"/>
-                <path fill="#3EB17E" d="m149.431 44.84-8.617 10-8.147-15.584 3.31 1.103 4.93 9.401 5.171-6.037z"/>
-                <path fill="#33465A" d="m146.078 43.723-5.171 6.037-4.93-9.4 3.101 1.031 1.917 3.624 1.982-2.325z"/>
-            </g>
-        </g>
-        <g fill-rule="nonzero" mask="url(#8e1knp26yc)">
-            <path d="M31.352 8.466c.832-.27 1.593-.356 2.258-.27.647.082 1.199.328 1.626.722.88.812 1.209 2.216.883 3.975L33.892 25.12c-.346 1.9-1.389 3.853-2.783 5.477-1.392 1.62-3.137 2.917-4.916 3.493l-11.454 3.717c-.832.27-1.593.355-2.259.27-.646-.083-1.199-.328-1.626-.722-.883-.812-1.215-2.218-.894-3.978l2.227-12.225c.346-1.9 1.387-3.852 2.78-5.474 1.392-1.62 3.139-2.918 4.918-3.496z" stroke="#FFF9E3" fill="url(#r4mim3vrfJ)" transform="translate(691.186 25)"/>
-            <path d="M14.18 3.323c.412-.04.7.02.785.17.287.509-.735 3.834-2.583 5.817l-.05.055a4.981 4.981 0 0 0-1.949-2.206c.199-.602.362-1.215.49-1.835a7.19 7.19 0 0 0 .097-.55c1.146-.915 2.41-1.371 3.21-1.451z" fill="url(#fqv2xsmtxK)" transform="translate(707.86 35.889)"/>
-            <path d="M717.344 47.913a.214.214 0 0 1 .241.248.438.438 0 0 1-.319.377h-.035a.216.216 0 0 1-.241-.248.438.438 0 0 1 .319-.375l.035-.002z" fill="#CDCDCD"/>
-            <g fill="#ECB732">
-                <path d="m714.46 46.649.758-.85.254.247-.753.846z"/>
-                <path d="m714.55 44.483.983.96.255.249.611.594-.32.351-.607-.59-.254-.248-.986-.963z"/>
-            </g>
-            <path fill="#ECB732" d="m716.755 44.073.258.242-1.225 1.377-.255-.25zM719.54 50.937l.262.241-1.585 1.808-.248-.255zM716.037 54.936l1.62-1.848.247.256-1.607 1.833z"/>
-            <path d="M718.337 49.225c.453-.044.78.063.759.267-.026.232-.498.509-1.058.612a2.592 2.592 0 0 1-.213.03c-.452.045-.778-.06-.757-.264.023-.234.497-.51 1.057-.614.073-.014.144-.024.212-.03z" fill="#EAADCC"/>
-            <path d="M718.342 48.146a1.156 1.156 0 0 1-.848.99l-.095.016a.569.569 0 0 1-.639-.655c.051-.474.388-.868.849-.991a.66.66 0 0 1 .095-.017.567.567 0 0 1 .638.657zm-1.076.392a.438.438 0 0 0 .32-.377.214.214 0 0 0-.242-.248h-.035a.438.438 0 0 0-.32.375.216.216 0 0 0 .242.248h.035" fill="#000"/>
-            <path fill="#ECB732" d="m711.657 54.21 1.298 1.301-.32.35-1.288-1.29zM709.824 53.045l.321-.35 1.261 1.263-.31.36z"/>
-            <path fill="#ECB732" d="m712.545 52.64.263.236-1.15 1.334-.311.361-.77.893-.264-.236.782-.91.311-.36z"/>
-            <path d="M713.687 49.884c.02-.003.04.006.05.023.138.22.366.318.707.296h.04c.337-.039.65-.192.887-.435a.095.095 0 0 1 .054-.025.048.048 0 0 1 .047.018c.02.037.01.082-.022.107-.264.27-.613.441-.987.486h-.045c-.371.027-.646-.087-.802-.34a.09.09 0 0 1 .03-.108.078.078 0 0 1 .041-.022z" fill="#000"/>
-            <path d="M711.245 50.04a.76.76 0 0 0 .595.17 1.135 1.135 0 0 0 .278-.066.253.253 0 0 1 .128.264c-.05.236-.455.451-.92.497h-.071c-.496.03-.849-.147-.8-.395.046-.195.382-.4.79-.47z" fill="#EAADCC"/>
-            <path d="M711.832 48.71a.216.216 0 0 1 .241.247.436.436 0 0 1-.32.375h-.035a.216.216 0 0 1-.242-.248.438.438 0 0 1 .32-.375h.036z" fill="#CDCDCD"/>
-            <path d="M712.83 48.94a1.15 1.15 0 0 1-.849.991l-.095.015a.569.569 0 0 1-.631-.65c.05-.474.388-.868.849-.99l.095-.016a.569.569 0 0 1 .63.65zm-1.076.392a.436.436 0 0 0 .319-.375.216.216 0 0 0-.241-.248h-.036a.438.438 0 0 0-.32.375.216.216 0 0 0 .242.248h.036" fill="#000"/>
-            <path d="M713.086 48.882a1.546 1.546 0 0 1-.967 1.268 1.135 1.135 0 0 1-.279.066.76.76 0 0 1-.595-.17.82.82 0 0 1-.25-.69 1.527 1.527 0 0 1 1.12-1.314l.126-.02c.513-.056.88.309.845.86zm-1.101 1.05a1.15 1.15 0 0 0 .848-.992.569.569 0 0 0-.638-.655l-.095.015c-.46.123-.798.517-.848.991a.569.569 0 0 0 .638.655l.095-.015" fill="#FFF9E3"/>
-            <path d="M12.331 9.363a4.981 4.981 0 0 0-1.948-2.206 4.085 4.085 0 0 0-2.485-.51 5.6 5.6 0 0 0-1.566.4c-1.118.47-2.18 1.298-3.104 2.367a13.694 13.694 0 0 0-3.141 7.393c-.438 4.288 1.664 5.223 4.609 4.932.409-.04.832-.104 1.268-.185 3.582-.68 6.596-2.29 7.094-7.174.2-1.959-.083-3.688-.727-5.017zm-1.096 4.243c-.025.232-.497.509-1.057.613a2.592 2.592 0 0 1-.214.03c-.452.044-.777-.061-.757-.265.024-.234.497-.509 1.057-.614.073-.014.145-.024.212-.03.454-.045.78.062.759.266m-1.342-2.27c.509-.052.884.313.848.866a1.527 1.527 0 0 1-1.12 1.314l-.127.02c-.51.05-.881-.315-.849-.869a1.527 1.527 0 0 1 1.12-1.311.82.82 0 0 1 .124-.02M6.687 8.598l.982.96 1.222-1.372.258.243-1.225 1.376.61.594-.318.351-.608-.59-.753.848-.258-.244.757-.849-.986-.962.319-.351M4.77 19.973l-1.288-1.29-.768.892-.263-.228.783-.91-1.271-1.272.32-.35 1.261 1.263 1.14-1.319.262.236-1.15 1.334 1.298 1.302-.321.35M5.225 13a1.546 1.546 0 0 1-.967 1.268.253.253 0 0 1 .127.265c-.049.236-.454.452-.92.498h-.07c-.496.03-.85-.148-.8-.396.046-.215.382-.412.79-.482a.82.82 0 0 1-.25-.69 1.527 1.527 0 0 1 1.12-1.314l.125-.02c.51-.05.883.315.849.867m2.364.982c-.264.27-.613.441-.988.486h-.044c-.372.027-.646-.087-.803-.34a.09.09 0 0 1 .03-.108.078.078 0 0 1 .047-.022c.02-.003.04.006.05.023.138.22.366.318.707.296h.04c.337-.04.65-.192.886-.435a.095.095 0 0 1 .055-.025.048.048 0 0 1 .047.018c.02.037.01.082-.022.107m2.755 3.118.626.645-.324.348-.615-.635-1.607 1.833-.26-.241 1.62-1.848-.919-.947.323-.34.908.937 1.571-1.794.262.243-1.585 1.799" fill="url(#ha6z8uam8L)" transform="translate(707.86 35.889)"/>
-            <path fill="#ECB732" d="m717.06 51.795.909.936.248.255.626.645-.324.348-.615-.635-.247-.256-.919-.947z"/>
-            <path d="M718.6 48.088a1.527 1.527 0 0 1-1.12 1.314l-.127.02c-.51.05-.881-.316-.849-.869a1.527 1.527 0 0 1 1.12-1.312.82.82 0 0 1 .124-.02c.52-.051.89.314.852.867zm-1.101 1.049c.46-.124.797-.518.848-.991a.567.567 0 0 0-.636-.657.66.66 0 0 0-.095.017c-.46.123-.798.517-.849.991a.569.569 0 0 0 .638.655l.095-.015" fill="#FFF9E3"/>
-            <path d="M9.884.137c.535-.032 1.43 2.17 1.086 4.64a7.19 7.19 0 0 1-.096.55c-.129.62-.292 1.233-.49 1.835a4.085 4.085 0 0 0-2.486-.51 5.6 5.6 0 0 0-1.566.4c.053-.445.14-.937.253-1.468.046-.22.103-.438.17-.656.743-2.447 2.6-4.74 3.13-4.79z" fill="url(#9405biog1M)" transform="translate(707.86 35.889)"/>
-            <path d="M4.002 3.903a3.718 3.718 0 0 1 2.753 1.019 7.583 7.583 0 0 0-.17.655c-.114.531-.2 1.018-.253 1.47-1.118.468-2.18 1.296-3.104 2.365-.762-1.867-.35-4.764.126-5.274.183-.15.411-.232.648-.235z" fill="url(#v1x4ocgd3N)" transform="translate(707.86 35.889)"/>
-            <path d="M22.623.598 32.63 7.189l-13.058 4.044c-.084.028-.167.058-.25.089l-.253.095a9.7 9.7 0 0 0-.621.268c-.381.196-.612.318-.768.404l-.117.065a6.397 6.397 0 0 0-.2.118c-.062.044-.12.086-.177.125l-.44.316c-.634.456-.791.587-.943.716-.208.177-.358.317-.503.454a19.19 19.19 0 0 0-.501.49c-.643.844-1.103 1.45-1.433 1.89l-.243.325c-.288.386-.441.596-.528.723l-.068.102c-.013.02-.024.037-.032.052l-.016.027-.014.025c-.645 1.347-.722 1.539-.792 1.73L8.97 33.192c-.157.877-.17 1.674-.06 2.378l.037.212-7.328-6.059c-.417-.346-.725-.82-.911-1.396l-.064-.22c-.18-.699-.195-1.526-.025-2.456l2.227-12.227c.527-1.663.608-1.879.7-2.091l.805-1.575C6.304 7.379 6.797 6.809 6.992 6.61l.035-.035c.02-.02.038-.035.054-.05l.023-.02c.21-.177.397-.332.587-.477l.051-.039L22.031.761l.592-.163z" stroke="#AF8822" fill="url(#2oxz7tuj2O)" transform="translate(691.186 25)"/>
-            <g>
-                <path d="M8.487.525 20.5 4.505c1.632.954 2.104 1.246 2.292 1.384l2.187 14.641-4.87 5.844.757-11.365a147.45 147.45 0 0 0-.293-1.559l-.028-.14a4.16 4.16 0 0 0-.067-.307l-.008-.02c-1.958-2.853-2.25-3.19-2.399-3.321l-.023-.02c-.023-.02-.044-.037-.07-.062L4.88 4.544l-1.12-.16L6.305 1.21 8.487.525z" stroke="url(#t09k17sy3P)" fill="url(#gjzz4cvncQ)" transform="translate(684 42.675)"/>
-                <path d="M1.639 5.632c.75-.464 1.792-.524 2.936-.128l10.829 3.753c1.228.426 2.34 1.293 3.15 2.346.799 1.038 1.308 2.26 1.316 3.426l.072 10.41c.007 1.058-.414 1.88-1.14 2.329-.75.465-1.791.524-2.935.128L5.038 24.143c-1.228-.426-2.34-1.294-3.15-2.347-.8-1.038-1.308-2.26-1.316-3.426L.5 7.96C.492 6.903.914 6.08 1.639 5.633z" stroke="#74EFC9" fill="url(#uaaoloz60R)" transform="translate(684 42.675)"/>
-                <path d="M693.719 53.457c.374.125.671.412.808.782l.916 2.442-3.99 4.457c-.314.35-.26.89.032 1.286l-3.318-1.06c-.78-.248-1.15-1.237-.667-1.779l5.27-5.908a.881.881 0 0 1 .949-.22z" fill="#80EEC0"/>
-                <path d="M697.775 56.514c.31.1.557.336.673.64l2.685 7.065c.247.65-.253 1.203-.898.997l-7.04-2.244c-.646-.206-.953-1.017-.554-1.46l4.351-4.82c.202-.21.51-.28.783-.178z" fill="#00DC82"/>
-            </g>
-        </g>
-    </g>
-</svg>
diff --git a/packages/docs/public/images/vueschool/close.svg b/packages/docs/public/images/vueschool/close.svg
deleted file mode 100644 (file)
index a9d51d1..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14">
-    <g fill="none" fill-rule="evenodd">
-        <g fill="#FFF" fill-rule="nonzero">
-            <path d="M1569.69 33.321c-.415-.414-1.084-.414-1.498 0L1563 38.503l-5.192-5.192c-.414-.415-1.083-.415-1.497 0-.415.414-.415 1.083 0 1.497l5.192 5.192-5.192 5.192c-.415.414-.415 1.083 0 1.497.414.415 1.083.415 1.497 0l5.192-5.192 5.192 5.192c.414.415 1.083.415 1.497 0 .415-.414.415-1.083 0-1.497L1564.497 40l5.192-5.192c.404-.404.404-1.083 0-1.487z" transform="translate(-1556.000000, -33.000000)"/>
-        </g>
-    </g>
-</svg>
diff --git a/packages/docs/public/images/vueschool/vs-iso.svg b/packages/docs/public/images/vueschool/vs-iso.svg
deleted file mode 100644 (file)
index b3bb7a8..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="36" height="41" viewBox="0 0 36 41">
-    <g fill="none" fill-rule="evenodd">
-        <g fill-rule="nonzero">
-            <g>
-                <path fill="#FCFCFE" d="M10.381 24.917c-2.696-13.332-.141-22.08-.141-22.08s-.684 5.325 4.688 13.91c-.068 10.64 2.027 16.191 2.027 16.191l.43-.316-.43.375s-3.186-2.6-6.574-8.08zM23.08 23.03c1.289 1.298 2.491 2.197 3.36 2.624l-.015-.008s.976.35 1.148.117c1.19-1.26 1.48-3.606.687-8.017-4.534-2.589-5.107-6.625-5.107-6.625s-.816 5.603-.073 11.909z" opacity=".5" transform="translate(-10 -20) translate(10 20)"/>
-                <path fill="#FFF" d="M10.24 2.837s-3.731 12.776 2.582 30.976c.172.525 0 1.109-.459 1.459l-6.658 4.667c-.631.466-1.55.175-1.836-.584C2.089 34.513-2.79 18.471 2.147.912c.23-.7.975-1.108 1.664-.817l6.428 2.742zM22.981 28.505l-6.026 4.433s-3.214-8.517-1.55-24.676c.115-.933 1.09-1.4 1.894-.933l5.854 3.792s-1.148 7.875.517 15.459c.172.758-.115 1.516-.689 1.925zM34.116 18.646l-5.568-3.675c-.344-.233-.86.117-.746.525 1.32 5.892 1.148 8.809-.23 10.267-.172.233-1.147-.117-1.147-.117.918.467 1.148.234 1.148.234.918-.7 4.362-3.209 6.543-4.726.86-.641.86-1.925 0-2.508z" transform="translate(-10 -20) translate(10 20)"/>
-            </g>
-        </g>
-    </g>
-</svg>
\ No newline at end of file
diff --git a/packages/docs/public/images/vueschool/vs-logo.svg b/packages/docs/public/images/vueschool/vs-logo.svg
deleted file mode 100644 (file)
index 9b72a0e..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="120" height="41" viewBox="0 0 120 41">
-    <g fill="none" fill-rule="evenodd">
-        <g fill-rule="nonzero">
-            <g>
-                <g>
-                    <path fill="#FCFCFE" d="M10.381 24.917c-2.696-13.332-.141-22.08-.141-22.08s-.684 5.325 4.688 13.91c-.068 10.64 2.027 16.191 2.027 16.191l.43-.316-.43.375s-3.186-2.6-6.574-8.08zM23.08 23.03c1.289 1.298 2.491 2.197 3.36 2.624l-.015-.008s.976.35 1.148.117c1.19-1.26 1.48-3.606.687-8.017-4.534-2.589-5.107-6.625-5.107-6.625s-.816 5.603-.073 11.909z" opacity=".5" transform="translate(-50 -20) translate(50 20)"/>
-                    <path fill="#FFF" d="M10.24 2.837s-3.731 12.776 2.582 30.976c.172.525 0 1.109-.459 1.459l-6.658 4.667c-.631.466-1.55.175-1.836-.584C2.089 34.513-2.79 18.471 2.147.912c.23-.7.975-1.108 1.664-.817l6.428 2.742zM22.981 28.505l-6.026 4.433s-3.214-8.517-1.55-24.676c.115-.933 1.09-1.4 1.894-.933l5.854 3.792s-1.148 7.875.517 15.459c.172.758-.115 1.516-.689 1.925zM34.116 18.646l-5.568-3.675c-.344-.233-.86.117-.746.525 1.32 5.892 1.148 8.809-.23 10.267-.172.233-1.147-.117-1.147-.117.918.467 1.148.234 1.148.234.918-.7 4.362-3.209 6.543-4.726.86-.641.86-1.925 0-2.508z" transform="translate(-50 -20) translate(50 20)"/>
-                </g>
-                <path fill="#FFF" d="M54.132 17.571l4.401-11.864H56.09l-3.096 8.819-3.096-8.82h-2.527l4.385 11.865h2.376zm8.066.218c.87 0 1.824-.335 2.276-1.105 0 .335.034.72.067.887h2.126c-.034-.284-.084-.853-.084-1.489V9.338h-2.226v4.786c0 .954-.569 1.623-1.556 1.623-1.038 0-1.506-.736-1.506-1.656V9.338h-2.226v5.204c0 1.791 1.138 3.247 3.13 3.247zm10.36.033c2.024 0 3.33-1.188 3.748-2.61l-1.858-.552c-.268.736-.837 1.255-1.874 1.255-1.105 0-2.025-.787-2.075-1.875h5.89c0-.033.034-.368.034-.686 0-2.644-1.523-4.267-4.067-4.267-2.108 0-4.05 1.707-4.05 4.334 0 2.778 1.992 4.401 4.251 4.401zm1.673-5.304h-3.682c.05-.754.686-1.624 1.84-1.624 1.273 0 1.808.804 1.842 1.624zM52.425 35.394c2.762 0 4.284-1.84 4.284-3.665 0-1.673-1.154-3.08-3.313-3.498l-1.657-.318c-.87-.167-1.288-.686-1.288-1.338 0-.787.736-1.506 1.857-1.506 1.506 0 2.042 1.02 2.159 1.673l2.075-.636c-.268-1.339-1.372-3.08-4.25-3.08-2.243 0-4.134 1.607-4.134 3.716 0 1.79 1.222 3.012 3.113 3.397l1.656.335c.92.184 1.44.72 1.44 1.406 0 .836-.687 1.456-1.925 1.456-1.673 0-2.493-1.055-2.594-2.226l-2.142.569c.184 1.69 1.573 3.715 4.72 3.715zm9.723 0c2.192 0 3.481-1.406 3.85-2.778l-1.959-.653c-.184.636-.753 1.39-1.89 1.39-1.139 0-2.11-.837-2.11-2.327s.954-2.31 2.092-2.31c1.105 0 1.624.704 1.825 1.39l1.99-.67c-.35-1.389-1.622-2.778-3.865-2.778-2.393 0-4.267 1.824-4.267 4.368 0 2.527 1.908 4.368 4.334 4.368zm7.715-.251v-4.836c.05-.904.602-1.607 1.54-1.607 1.07 0 1.522.72 1.522 1.64v4.803h2.226v-5.188c0-1.807-.97-3.263-3.062-3.263-.787 0-1.69.268-2.226.904v-4.57h-2.226v12.117h2.226zm11.246.25c2.46 0 4.317-1.84 4.317-4.367 0-2.544-1.857-4.368-4.317-4.368s-4.318 1.824-4.318 4.368c0 2.527 1.858 4.368 4.318 4.368zm0-2.024c-1.088 0-2.092-.803-2.092-2.343 0-1.556 1.004-2.343 2.092-2.343 1.087 0 2.091.787 2.091 2.343s-1.004 2.343-2.091 2.343zm9.773 2.025c2.46 0 4.317-1.84 4.317-4.368 0-2.544-1.857-4.368-4.317-4.368s-4.318 1.824-4.318 4.368c0 2.527 1.858 4.368 4.318 4.368zm0-2.025c-1.088 0-2.092-.803-2.092-2.343 0-1.556 1.004-2.343 2.092-2.343 1.087 0 2.091.787 2.091 2.343s-1.004 2.343-2.091 2.343zm8.3 1.774V23.027h-2.226v12.116h2.226zm3.682.117c.853 0 1.54-.686 1.54-1.523 0-.837-.687-1.523-1.54-1.523-.837 0-1.523.686-1.523 1.523 0 .837.686 1.523 1.523 1.523zm4.903-9.69c.77 0 1.372-.619 1.372-1.355 0-.77-.602-1.389-1.372-1.389-.753 0-1.372.62-1.372 1.39 0 .735.619 1.355 1.372 1.355zm1.121 9.573v-8.234h-2.226v8.234h2.226zm6.075.25c2.46 0 4.317-1.84 4.317-4.367 0-2.544-1.857-4.368-4.317-4.368s-4.318 1.824-4.318 4.368c0 2.527 1.858 4.368 4.318 4.368zm0-2.024c-1.088 0-2.092-.803-2.092-2.343 0-1.556 1.004-2.343 2.092-2.343s2.092.787 2.092 2.343-1.004 2.343-2.092 2.343z" transform="translate(-50 -20) translate(50 20)"/>
-            </g>
-        </g>
-    </g>
-</svg>
\ No newline at end of file