From 8226462acc9379044128f2b98b942ef97395e13b Mon Sep 17 00:00:00 2001 From: Daniel Kluge Date: Thu, 20 Oct 2022 23:32:07 +0200 Subject: [PATCH] Links accessable --- components/Blog/Navigation.tsx | 8 ++++---- components/Blog/ThemeSwitch.tsx | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/components/Blog/Navigation.tsx b/components/Blog/Navigation.tsx index 8c33ce9..3b4a302 100644 --- a/components/Blog/Navigation.tsx +++ b/components/Blog/Navigation.tsx @@ -23,17 +23,17 @@ const Navigation: NextPage<{}> = () => {
Projects - +
- About me - + About Me +
-
+
; }; diff --git a/components/Blog/ThemeSwitch.tsx b/components/Blog/ThemeSwitch.tsx index b5d0ff3..4405807 100644 --- a/components/Blog/ThemeSwitch.tsx +++ b/components/Blog/ThemeSwitch.tsx @@ -44,8 +44,8 @@ const ThemeSwitch: NextPage<{ size?: string }> = ({ size }) => { const moonClasses = fadeProps.moon || (theme === "light" ? styles.selected : undefined); return
-
switchTheme("light")}>
-
switchTheme("dark")}>
+
switchTheme("light")}>
+
switchTheme("dark")}>
; };