diff --git a/.vitepress/theme/components/VueMasteryBanner.vue b/.vitepress/theme/components/VueMasteryBanner.vue index 66deaabb57..ab40bb090f 100644 --- a/.vitepress/theme/components/VueMasteryBanner.vue +++ b/.vitepress/theme/components/VueMasteryBanner.vue @@ -12,7 +12,7 @@
Access the highest quality library of Vue courses freeJuly 22-24 only
- + @@ -24,7 +24,7 @@ const isVisible = ref(false) onMounted(() => { const now = new Date() - const end = new Date('2022-07-24T00:00:00+02:00') + const end = new Date('2022-07-25T00:00:00+02:00') isVisible.value = !localStorage.getItem('VM_FW_22_OFFER') && (now < end) if (isVisible.value) document.body.classList.add('has-top-banner') })