diff --git a/src/lib/components/app-sidebar.svelte b/src/lib/components/app-sidebar.svelte
index ab03e68e..04b82ce9 100644
--- a/src/lib/components/app-sidebar.svelte
+++ b/src/lib/components/app-sidebar.svelte
@@ -64,6 +64,7 @@
);
let commandInput = $state('');
+ let commandPlaceholder = $state('Search...');
@@ -309,10 +310,18 @@
{
- if (!state) commandInput = '';
+ if (!state) {
+ commandInput = '';
+ // 100% not an easter egg
+ if (Math.random() > 0.05) {
+ commandPlaceholder = 'Search...';
+ } else {
+ commandPlaceholder = "The search begins, I'm back, so enjoy the trip, huh"; // https://share.google/zDleRaqsFgtSUx2l3
+ }
+ }
}}
>
-
+
No results found.
{#each filteredMainNavigation as groupItem (groupItem.title)}