- Irish for "knowledge", especially knowledge gained
- through practical experience.
-
-
-
-
-
- is{" "}
-
- my
- {" "}
- technical knowledge management system, or "second-brain", comprising
- notes from the study of software engineering and computer science.
-
-
-
-
+ return (
+ <>
+
+
+
+
+
+
+
Welcome
+
+
+
+
+
+
+
+
+
+
+
🇮🇪
+
+ Irish for "knowledge", especially knowledge gained
+ through practical experience.
+
+
+
+
+
+ is{" "}
+
+ my
+ {" "}
+ technical knowledge management system, or "second-brain", comprising
+ notes from the study of software engineering and computer science.
+
+
+
+
- {/*
+ {/*
@@ -74,12 +74,12 @@ I'm
*/}
-
-
-
-
-
-
- >
- )
+
+
+
+
+
+
+ >
+ )
}
diff --git a/src/templates/Entry.tsx b/src/templates/Entry.tsx
index bd70fd8..0943dab 100644
--- a/src/templates/Entry.tsx
+++ b/src/templates/Entry.tsx
@@ -1,4 +1,3 @@
-import Main from "@/templates/Main"
import { useParams } from "react-router"
import Page from "./Page"
export default function Entry() {
diff --git a/src/templates/Main.tsx b/src/templates/Main.tsx
index 407efdf..6919fbf 100644
--- a/src/templates/Main.tsx
+++ b/src/templates/Main.tsx
@@ -1,10 +1,11 @@
import AppHeader from "@/components/AppHeader"
import { AppSidebar } from "@/containers/AppSidebar"
import { SidebarInset, SidebarProvider } from "@/components/ui/sidebar"
+import { ThemeProvider } from "@/context/ThemeProvider"
export default function Main({ children, pageTitle }) {
return (
- <>
+
@@ -12,6 +13,6 @@ export default function Main({ children, pageTitle }) {
{children}
- >
+
)
}
diff --git a/src/templates/Page.tsx b/src/templates/Page.tsx
index 7f4bc02..f084b6a 100644
--- a/src/templates/Page.tsx
+++ b/src/templates/Page.tsx
@@ -6,7 +6,7 @@ export default function Page({ pageTitle = null, pageBody = null, titleComponent