From 2c5565a14729700dcf29b19d77967375bb2288f3 Mon Sep 17 00:00:00 2001 From: Kenneth Ng <145921389+DubNubz@users.noreply.github.com> Date: Mon, 9 Dec 2024 21:08:59 -0500 Subject: [PATCH] docs: bring back the UwU logo (#18924) --- .../landing/1. hero-section/HeroDiagram.vue | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.vitepress/theme/components/landing/1. hero-section/HeroDiagram.vue b/.vitepress/theme/components/landing/1. hero-section/HeroDiagram.vue index 10bd32fa..f76e7092 100644 --- a/.vitepress/theme/components/landing/1. hero-section/HeroDiagram.vue +++ b/.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') +})