From 31f3c622ebf6bedada70f0edb56713b48dd2e4b7 Mon Sep 17 00:00:00 2001 From: Ruslan Bakiev <572431+veikab@users.noreply.github.com> Date: Thu, 22 Jan 2026 11:27:59 +0700 Subject: [PATCH] Restore landing page + improve header search input - Restore full landing with How it works + Who it's for sections - Make search input bigger and rounder (rounded-full, shadow) - Remove border between input and chips - Bigger badges and icons --- app/components/navigation/MainNavigation.vue | 28 ++--- app/pages/index.vue | 121 ++++++++++++++++++- 2 files changed, 132 insertions(+), 17 deletions(-) diff --git a/app/components/navigation/MainNavigation.vue b/app/components/navigation/MainNavigation.vue index e002d05..a906231 100644 --- a/app/components/navigation/MainNavigation.vue +++ b/app/components/navigation/MainNavigation.vue @@ -12,42 +12,42 @@
- + -
+
- - {{ token.label }} + + {{ token.label }}
- + {{ selectModeLabel }}:
@@ -57,7 +57,7 @@ v-model="localSearchQuery" type="text" :placeholder="placeholder" - class="flex-1 min-w-24 bg-transparent outline-none text-sm" + class="flex-1 min-w-32 bg-transparent outline-none" @input="$emit('update:search-query', localSearchQuery)" />
@@ -181,15 +181,15 @@
diff --git a/app/pages/index.vue b/app/pages/index.vue index ac8c0d9..5c1fc43 100644 --- a/app/pages/index.vue +++ b/app/pages/index.vue @@ -1,7 +1,122 @@