Add API layer, Zustand store, markdown renderer, types

This commit is contained in:
2026-04-25 21:47:51 -04:00
parent cd73b8f059
commit 241acf2b52
4 changed files with 214 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
export type Theme = 'light' | 'dark';
export type FontSize = 'small' | 'medium' | 'large';
export type DreamMode = 'nrem' | 'early-rem' | 'late-rem' | 'lucid';
export interface Project {
name: string;
path: string;
}