sync: phase 1 backend + frontend from server

This commit is contained in:
2026-06-30 09:26:03 -04:00
parent d4cdd89544
commit 30e159cbdb
31 changed files with 4758 additions and 114 deletions
+11
View File
@@ -0,0 +1,11 @@
import { create } from 'zustand';
interface LayoutState {
isDM: boolean;
setDM: (value: boolean) => void;
}
export const useLayoutStore = create<LayoutState>((set) => ({
isDM: false,
setDM: (value) => set({ isDM: value }),
}));