Start actually writing a post

This commit is contained in:
2024-11-16 18:20:32 -05:00
parent 582e03cff3
commit 1b4d190906
16 changed files with 2803 additions and 0 deletions

6
src/isDarkMode.ts Normal file
View File

@ -0,0 +1,6 @@
import {useColorMode} from "@docusaurus/theme-common";
export default function isDarkMode() {
const {colorMode} = useColorMode();
return colorMode === "dark";
}