Update WBBR frontend template collection

This commit is contained in:
Codex
2026-08-27 20:15:24 +08:00
parent bd4d54a110
commit e444605e5d
85 changed files with 6322 additions and 115 deletions

View File

@@ -105,7 +105,7 @@ export default function Home() {
<aside className={`sidebar ${sidebarOpen ? "is-open" : ""}`}>
<button className="brand" onClick={() => navigate("overview")} aria-label="返回概览">
<span className="brand-mark"><i /><i /><i /></span>
<span>Orbit<span>Flow</span></span>
<span>WBBR<span>UI</span></span>
</button>
<nav className="main-nav" aria-label="主导航">
{navGroups.map((group) => (
@@ -155,7 +155,7 @@ export default function Home() {
<section className="page-content">
<div className="page-heading">
<div><p className="eyebrow">{activeView === "overview" ? "2026 年 8 月 7 日 · 星期五" : "ORBITFLOW TEMPLATE"}</p><h1>{pageMeta[activeView].title}</h1><p>{pageMeta[activeView].subtitle}</p></div>
<div><p className="eyebrow">{activeView === "overview" ? "2026 年 8 月 7 日 · 星期五" : "WBBR STYLE TEMPLATE"}</p><h1>{pageMeta[activeView].title}</h1><p>{pageMeta[activeView].subtitle}</p></div>
<div className="heading-actions"><button className="button secondary" onClick={() => notify("示例数据已刷新")}> </button><button className="button primary" onClick={() => activeView === "schedule" ? setScheduleModal(true) : notify("已创建一条示例记录")}> {activeView === "schedule" ? "新建任务" : "快速创建"}</button></div>
</div>
{activeView === "overview" && <Overview onNavigate={navigate} notify={notify} />}