feat: scaffold headless frontend integration per design doc

This commit is contained in:
2026-08-06 15:51:59 +08:00
parent b0919bf8b5
commit 7e30631c68
28 changed files with 708 additions and 126 deletions
+11
View File
@@ -0,0 +1,11 @@
import { create } from "zustand";
interface AppState {
theme: "light" | "dark";
setTheme: (theme: "light" | "dark") => void;
}
export const useAppStore = create<AppState>((set) => ({
theme: "light",
setTheme: (theme) => set({ theme }),
}));