From 2e67f247adc6bb5c75b7e65c837e493e62058644 Mon Sep 17 00:00:00 2001
From: Ariver <shanghai3168@gmail.com>
Date: Sat, 06 Jun 2026 22:30:33 +0800
Subject: [PATCH] Add sixth screen: Backup & Restore image left, copy right
---
docs/index-en.html | 19 +++++++++
docs/styles.css | 64 ++++++++++++++++++++++++++++++++
docs/assets/backup-restore.jpg | 0
docs/index.html | 19 +++++++++
4 files changed, 102 insertions(+), 0 deletions(-)
diff --git a/docs/assets/backup-restore.jpg b/docs/assets/backup-restore.jpg
new file mode 100644
index 0000000..3b5ee4b
--- /dev/null
+++ b/docs/assets/backup-restore.jpg
Binary files differ
diff --git a/docs/index-en.html b/docs/index-en.html
index 8fed977..5542131 100644
--- a/docs/index-en.html
+++ b/docs/index-en.html
@@ -152,6 +152,25 @@
</div>
</section>
+ <section class="backup" aria-label="Backup & Restore">
+ <div class="layout backup__split">
+ <figure class="backup__art">
+ <img
+ src="assets/backup-restore.jpg"
+ alt="TagLauncher JSON backup and restore for tags and layout"
+ width="1024"
+ height="558"
+ loading="lazy"
+ decoding="async">
+ </figure>
+
+ <div class="backup__copy">
+ <h2 class="backup__headline">Backup & Restore</h2>
+ <p class="backup__lead"><strong>Tags and layout data</strong> support JSON <strong>backup</strong>—export / import so you never lose your setup.</p>
+ </div>
+ </div>
+ </section>
+
<main class="page-main">
<div class="layout">
<section class="card">
diff --git a/docs/index.html b/docs/index.html
index be2e1c5..4f114cb 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -152,6 +152,25 @@
</div>
</section>
+ <section class="backup" aria-label="Backup & Restore">
+ <div class="layout backup__split">
+ <figure class="backup__art">
+ <img
+ src="assets/backup-restore.jpg"
+ alt="TagLauncher 数据备份:JSON 导出与导入分类布局"
+ width="1024"
+ height="558"
+ loading="lazy"
+ decoding="async">
+ </figure>
+
+ <div class="backup__copy">
+ <h2 class="backup__headline">Backup & Restore</h2>
+ <p class="backup__lead"><strong>分类与布局数据支持</strong> JSON <strong>备份</strong> 导出 / 导入,再也不怕布局数据丢失。</p>
+ </div>
+ </div>
+ </section>
+
<main class="page-main">
<div class="layout">
<section class="card">
diff --git a/docs/styles.css b/docs/styles.css
index 6b05d92..baa980c 100644
--- a/docs/styles.css
+++ b/docs/styles.css
@@ -525,6 +525,60 @@
height: auto;
}
+/* Sixth screen — backup & restore */
+.backup {
+ padding: 56px 0 64px;
+ background: #ffffff;
+}
+
+.backup__split {
+ display: grid;
+ grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
+ gap: 28px 48px;
+ align-items: center;
+}
+
+.backup__art {
+ margin: 0;
+ line-height: 0;
+ justify-self: start;
+ max-width: 540px;
+ 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);
+}
+
+.backup__art img {
+ display: block;
+ width: 100%;
+ height: auto;
+}
+
+.backup__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;
+}
+
+.backup__lead {
+ margin: 22px 0 0;
+ font-size: clamp(0.98rem, 1.55vw, 1.1rem);
+ line-height: 1.75;
+ color: #1d1d1f;
+ max-width: 24em;
+}
+
+.backup__lead strong {
+ font-weight: 700;
+ color: #000;
+}
+
/* Main content */
.page-main {
padding: 56px 0 72px;
@@ -739,6 +793,16 @@
justify-self: center;
max-width: 100%;
}
+
+ .backup__split {
+ grid-template-columns: 1fr;
+ gap: 36px;
+ }
+
+ .backup__art {
+ justify-self: center;
+ max-width: 100%;
+ }
}
@media (max-width: 560px) {
--
Gitblit v1.9.3