feat: unified org-garden

This commit is contained in:
Ignacio Ballesteros
2026-02-21 13:10:30 +01:00
parent a4582230b5
commit 678fb315d3
10 changed files with 415 additions and 102 deletions

15
org-garden/quartz-config/index.d.ts vendored Normal file
View File

@@ -0,0 +1,15 @@
declare module "*.scss" {
const content: string
export = content
}
// dom custom event
interface CustomEventMap {
prenav: CustomEvent<{}>
nav: CustomEvent<{ url: FullSlug }>
themechange: CustomEvent<{ theme: "light" | "dark" }>
readermodechange: CustomEvent<{ mode: "on" | "off" }>
}
type ContentIndex = Record<FullSlug, ContentDetails>
declare const fetchData: Promise<ContentIndex>