From bd3f798a400745627799629d3aa386a19b448554 Mon Sep 17 00:00:00 2001 From: Alfonsus Ardani Date: Tue, 31 Mar 2026 17:43:00 +0700 Subject: [PATCH 01/12] feat: add kawai logos --- app/pages/index.vue | 14 ++++- public/extra/npmx-cute.svg | 105 +++++++++++++++++++++++++++++++++++++ 2 files changed, 118 insertions(+), 1 deletion(-) create mode 100644 public/extra/npmx-cute.svg diff --git a/app/pages/index.vue b/app/pages/index.vue index 7cc3981569..853536fb39 100644 --- a/app/pages/index.vue +++ b/app/pages/index.vue @@ -24,6 +24,9 @@ defineOgImageComponent('Default', { title: 'npmx', description: 'a fast, modern browser for the **npm registry**', }) + +const route = useRoute() +const isKawaii = computed(() => route.query.kawai === 'true')