We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 736fcea commit 30614aeCopy full SHA for 30614ae
1 file changed
apps/frontend/src/components/brand/Wordmark.vue
@@ -23,11 +23,16 @@
23
</template>
24
25
<script setup lang="ts">
26
-const today = new Date()
27
-const showWordart = today.getMonth() === 3 && today.getDate() === 1
28
-
29
const emblemClass = ref('')
30
const emblemAnimating = ref(false)
+const showWordart = ref(false)
+
+onMounted(() => {
31
+ const today = new Date()
32
+ if (today.getMonth() === 3 && today.getDate() === 1) {
33
+ showWordart.value = true
34
+ }
35
+})
36
37
const emblemHover = () => {
38
if (!emblemAnimating.value) {
0 commit comments