We desperately need more contributers, join us if you're interested
diff --git a/src/components/Header.tsx b/src/components/Header.tsx
index 071b0849..106d1417 100644
--- a/src/components/Header.tsx
+++ b/src/components/Header.tsx
@@ -1,7 +1,7 @@
-'use client';
-import { FC, useMemo } from "react";
-import { formatDistance, parse } from 'date-fns';
+'use client';;
+import { FC } from "react";
import { useSettings } from "@/hooks/contexts/settings";
+import FullLogo from "./Branding/FullLogo";
const Header: FC = () => {
const { language } = useSettings();
@@ -21,7 +21,7 @@ const Header: FC = () => {
return (
- NTHUMods
+
{language == 'en' &&
(currentSemester ?`AC${currentSemester.year} Sem ${currentSemester.semester}, Week ${currentWeek}`: `No Active Semester`)}
diff --git a/src/components/SideNav.tsx b/src/components/SideNav.tsx
index 56aa0bc2..d4e76106 100644
--- a/src/components/SideNav.tsx
+++ b/src/components/SideNav.tsx
@@ -16,36 +16,43 @@ const SideNav:FC = () => {
title: string;
href: Route;
icon: JSX.Element;
+ color: string;
}[] = [
{
title: dict.navigation.today,
href: `/${language}/today`,
- icon:
+ icon: ,
+ color: '#7EC96D'
},
{
title: dict.navigation.timetable,
href: `/${language}/timetable`,
- icon:
+ icon: ,
+ color: '#E47B86'
},
{
title: dict.navigation.courses,
href: `/${language}/courses`,
- icon:
+ icon: ,
+ color: '#7BC2CF'
},
{
title: dict.navigation.venues,
href: `/${language}/venues`,
- icon:
+ icon: ,
+ color: '#AEA3C9'
},
{
title: dict.navigation.bus,
href: `/${language}/bus`,
- icon:
+ icon: ,
+ color: '#EB8751'
},
{
title: dict.navigation.settings,
href: `/${language}/settings`,
- icon:
+ icon: ,
+ color: '#B46DD6'
}
]
return (<>
@@ -61,9 +68,9 @@ const SideNav:FC = () => {