diff --git a/docs/.vitepress/theme/components/landing/1. hero-section/HeroDiagram.vue b/docs/.vitepress/theme/components/landing/1. hero-section/HeroDiagram.vue index 10bd32fa4d0fb9..f76e7092220094 100644 --- a/docs/.vitepress/theme/components/landing/1. hero-section/HeroDiagram.vue +++ b/docs/.vitepress/theme/components/landing/1. hero-section/HeroDiagram.vue @@ -437,6 +437,12 @@ const isChromiumBrowser = ref(false) onMounted(() => { isChromiumBrowser.value = 'chrome' in window }) + +// Check for uwu query +const isUwu = ref(false) +onMounted(() => { + isUwu.value = location.search.includes('?uwu') +})