diff --git a/components/site-footer.tsx b/components/site-footer.tsx
index 81e4f1c..8963ea4 100644
--- a/components/site-footer.tsx
+++ b/components/site-footer.tsx
@@ -64,6 +64,7 @@ export function SiteFooter() {
+
{/* spacer */}
{MAIN_NAV.map(
(
@@ -81,22 +82,6 @@ export function SiteFooter() {
)
)}
-
-
-
-
-
-
-
-
+
+
+
diff --git a/components/ui/label.tsx b/components/ui/label.tsx
index bcf263d..d3d04ab 100644
--- a/components/ui/label.tsx
+++ b/components/ui/label.tsx
@@ -27,7 +27,7 @@ const MainPageTitle = ({
return (
({
if (containsMath(text)) {
return (
@@ -571,9 +571,7 @@ const REACT_MARKDOWN_CONFIG = (darkMode: boolean): CustomComponents => ({
}
return (
-
+
{children}
)
@@ -592,7 +590,7 @@ const REACT_MARKDOWN_CONFIG = (darkMode: boolean): CustomComponents => ({
if (containsMath(text)) {
return (
@@ -618,7 +616,7 @@ const REACT_MARKDOWN_CONFIG = (darkMode: boolean): CustomComponents => ({
ol: ({ ordered, ...props }) =>
createMarkdownElement(ordered ? "ol" : "ul", {
className:
- "list-decimal text-tuatara-600 font-sans text-lg font-normal mt-3",
+ "list-decimal text-tuatara-600 font-sans text-lg font-normal mt-3 dark:text-tuatara-200",
...props,
}),
table: Table,
diff --git a/hooks/useAppSettings.ts b/hooks/useAppSettings.ts
index ba1a7bd..2e73f01 100644
--- a/hooks/useAppSettings.ts
+++ b/hooks/useAppSettings.ts
@@ -4,17 +4,9 @@ import { LABELS } from "@/app/labels"
export function useAppSettings() {
const MAIN_NAV: MainNavProps["items"] = [
{
- title: LABELS.COMMON.MENU.HOME,
- href: "/",
- onlyMobile: true,
+ title: LABELS.COMMON.MENU.ABOUT,
+ href: "/about",
},
- /*
- {
- title: "Devcon 7",
- href: "/devcon-7",
- onlyFooter: true,
- },
- */
{
title: LABELS.COMMON.MENU.PROJECTS,
href: "/projects",
@@ -23,6 +15,23 @@ export function useAppSettings() {
title: LABELS.COMMON.MENU.RESEARCH,
href: "/research",
},
+ {
+ title: LABELS.COMMON.MENU.BLOG,
+ href: "/blog",
+ },
+ /*
+ {
+ title: LABELS.COMMON.MENU.HOME,
+ href: "/",
+ onlyMobile: true,
+ },
+
+ {
+ title: "Devcon 7",
+ href: "/devcon-7",
+ onlyFooter: true,
+ },
+ */
/*
{
title: LABELS.COMMON.MENU.PROGRAMS,
@@ -30,21 +39,13 @@ export function useAppSettings() {
onlyFooter: true,
},
*/
- {
- title: LABELS.COMMON.MENU.ABOUT,
- href: "/about",
- },
+
/*
{
title: LABELS.COMMON.MENU.RESOURCES,
href: "/resources",
},
*/
- {
- title: LABELS.COMMON.MENU.BLOG,
- href: "/blog",
- onlyHeader: true,
- },
]
return {