From b30572f8558c61ab7436c0f8317cf0fa74bfa49e Mon Sep 17 00:00:00 2001 From: Zixuan Chen Date: Fri, 14 Aug 2026 20:22:13 +0800 Subject: [PATCH 01/29] chore: bk --- site/public/afterglow/index.html | 567 +++++++++++++++++++++++++++++++ site/src/App.tsx | 24 +- site/src/blackhole/BlackHole.tsx | 147 -------- site/src/blackhole/shaders.ts | 218 ------------ site/src/i18n.tsx | 389 ++++++++++----------- site/src/sections/Agents.tsx | 39 +++ site/src/sections/Cli.tsx | 39 +++ site/src/sections/Hero.tsx | 3 - site/src/sections/Privacy.tsx | 2 - site/src/sections/Recall.tsx | 73 ++++ site/src/sections/Rewind.tsx | 59 ---- site/src/sections/Search.tsx | 51 --- site/src/sections/SearchAsk.tsx | 60 ++++ site/src/sections/Skills.tsx | 50 --- site/src/sections/Specs.tsx | 4 +- site/src/sections/Summary.tsx | 47 --- site/src/styles.css | 488 +++++++++++++------------- 17 files changed, 1218 insertions(+), 1042 deletions(-) create mode 100644 site/public/afterglow/index.html delete mode 100644 site/src/blackhole/BlackHole.tsx delete mode 100644 site/src/blackhole/shaders.ts create mode 100644 site/src/sections/Agents.tsx create mode 100644 site/src/sections/Cli.tsx create mode 100644 site/src/sections/Recall.tsx delete mode 100644 site/src/sections/Rewind.tsx delete mode 100644 site/src/sections/Search.tsx create mode 100644 site/src/sections/SearchAsk.tsx delete mode 100644 site/src/sections/Skills.tsx delete mode 100644 site/src/sections/Summary.tsx diff --git a/site/public/afterglow/index.html b/site/public/afterglow/index.html new file mode 100644 index 0000000..a2cfc5e --- /dev/null +++ b/site/public/afterglow/index.html @@ -0,0 +1,567 @@ + + + + + +Afterglow shader lab + + + + +
+
← / → 切换(数字键 1–9 直达)
+
+
+

+

+
+
+ + + + diff --git a/site/src/App.tsx b/site/src/App.tsx index 7f8aeb7..6615ebd 100644 --- a/site/src/App.tsx +++ b/site/src/App.tsx @@ -1,10 +1,10 @@ import { LangProvider, useLang, useCopy } from './i18n' import Hero from './sections/Hero' import Privacy from './sections/Privacy' -import Rewind from './sections/Rewind' -import Search from './sections/Search' -import Summary from './sections/Summary' -import Skills from './sections/Skills' +import Recall from './sections/Recall' +import SearchAsk from './sections/SearchAsk' +import Cli from './sections/Cli' +import Agents from './sections/Agents' import Specs from './sections/Specs' function Nav() { @@ -14,16 +14,16 @@ function Nav() {