From ccd23e3f062eb811a7febf2861737ffd38828693 Mon Sep 17 00:00:00 2001
From: Ariver <shanghai3168@gmail.com>
Date: Sat, 06 Jun 2026 22:26:41 +0800
Subject: [PATCH] Add fifth screen: global Quick Search copy left, image right
---
docs/index-en.html | 24 ++++++++
docs/styles.css | 90 ++++++++++++++++++++++++++++++
docs/assets/quick-search.jpg | 0
docs/index.html | 24 ++++++++
4 files changed, 138 insertions(+), 0 deletions(-)
diff --git a/docs/assets/quick-search.jpg b/docs/assets/quick-search.jpg
new file mode 100644
index 0000000..c47e322
--- /dev/null
+++ b/docs/assets/quick-search.jpg
Binary files differ
diff --git a/docs/index-en.html b/docs/index-en.html
index 3d64048..8fed977 100644
--- a/docs/index-en.html
+++ b/docs/index-en.html
@@ -128,6 +128,30 @@
</div>
</section>
+ <section class="search" aria-label="Global Quick Search">
+ <div class="layout search__split">
+ <div class="search__copy">
+ <h2 class="search__headline">Global Quick Search</h2>
+ <p class="search__lead">Search app names, tags, and memos—instantly.</p>
+ <p class="search__tagline">The experience macOS never gave you—we do.</p>
+ <div class="search__shortcut">
+ <span class="search__shortcut-label">Shortcut</span>
+ <span class="search__shortcut-keys"><kbd>fn</kbd> + <kbd>Space</kbd></span>
+ </div>
+ </div>
+
+ <figure class="search__art">
+ <img
+ src="assets/quick-search.jpg"
+ alt="TagLauncher Quick Search for apps, tags, and memos"
+ width="503"
+ height="383"
+ loading="lazy"
+ decoding="async">
+ </figure>
+ </div>
+ </section>
+
<main class="page-main">
<div class="layout">
<section class="card">
diff --git a/docs/index.html b/docs/index.html
index 8bf0ee1..be2e1c5 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -128,6 +128,30 @@
</div>
</section>
+ <section class="search" aria-label="全局 Quicksearch">
+ <div class="layout search__split">
+ <div class="search__copy">
+ <h2 class="search__headline">全局 Quicksearch</h2>
+ <p class="search__lead">快捷搜索支持搜索应用名、标签与备忘</p>
+ <p class="search__tagline">Mac 原生从不会给你的体验,我们给你!</p>
+ <div class="search__shortcut">
+ <span class="search__shortcut-label">快捷键</span>
+ <span class="search__shortcut-keys"><kbd>fn</kbd> + <kbd>Space</kbd></span>
+ </div>
+ </div>
+
+ <figure class="search__art">
+ <img
+ src="assets/quick-search.jpg"
+ alt="TagLauncher Quick Search:搜索应用名、标签与备忘"
+ width="503"
+ height="383"
+ loading="lazy"
+ decoding="async">
+ </figure>
+ </div>
+ </section>
+
<main class="page-main">
<div class="layout">
<section class="card">
diff --git a/docs/styles.css b/docs/styles.css
index dd520ca..6b05d92 100644
--- a/docs/styles.css
+++ b/docs/styles.css
@@ -445,6 +445,86 @@
max-width: 22em;
}
+/* Fifth screen — global Quick Search */
+.search {
+ padding: 56px 0 64px;
+ background: #ffffff;
+}
+
+.search__split {
+ display: grid;
+ grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
+ gap: 28px 48px;
+ align-items: center;
+}
+
+.search__headline {
+ margin: 0;
+ font-size: clamp(1.85rem, 3.8vw, 2.7rem);
+ font-weight: 800;
+ letter-spacing: -0.04em;
+ line-height: 1.12;
+ color: #000;
+}
+
+.search__lead {
+ margin: 22px 0 0;
+ font-size: clamp(0.98rem, 1.55vw, 1.1rem);
+ line-height: 1.75;
+ color: #6e6e73;
+ max-width: 24em;
+}
+
+.search__tagline {
+ margin: 16px 0 0;
+ font-size: clamp(0.98rem, 1.55vw, 1.1rem);
+ line-height: 1.75;
+ color: #1d1d1f;
+ font-weight: 500;
+ max-width: 24em;
+}
+
+.search__shortcut {
+ margin-top: 32px;
+ display: inline-flex;
+ flex-direction: column;
+ gap: 6px;
+ padding: 14px 20px;
+ border-radius: 14px;
+ background: #f5f5f7;
+ border: 1px solid var(--border);
+}
+
+.search__shortcut-label {
+ font-size: 0.8rem;
+ color: #86868b;
+}
+
+.search__shortcut-keys {
+ font-size: 1.02rem;
+ font-weight: 650;
+ letter-spacing: 0.01em;
+}
+
+.search__art {
+ margin: 0;
+ line-height: 0;
+ justify-self: end;
+ max-width: 460px;
+ width: 100%;
+ border-radius: 12px;
+ overflow: hidden;
+ background: #f5f5f7;
+ box-shadow: 0 10px 28px rgba(30, 45, 90, 0.1);
+ border: 1px solid rgba(0, 0, 0, 0.06);
+}
+
+.search__art img {
+ display: block;
+ width: 100%;
+ height: auto;
+}
+
/* Main content */
.page-main {
padding: 56px 0 72px;
@@ -649,6 +729,16 @@
justify-self: center;
max-width: 100%;
}
+
+ .search__split {
+ grid-template-columns: 1fr;
+ gap: 36px;
+ }
+
+ .search__art {
+ justify-self: center;
+ max-width: 100%;
+ }
}
@media (max-width: 560px) {
--
Gitblit v1.9.3