diff --git a/web/src/components/general/Logo.tsx b/web/src/components/general/Logo.tsx
index 9a2f03c..b83ac1d 100644
--- a/web/src/components/general/Logo.tsx
+++ b/web/src/components/general/Logo.tsx
@@ -2,7 +2,13 @@
import styles from "./logo.module.scss";
import { usePathname } from "next/navigation";
-export const Logo = ({ christmas }: { christmas: boolean }) => {
+export const Logo = ({
+ christmas,
+ studentHat,
+}: {
+ christmas: boolean;
+ studentHat: boolean;
+}) => {
// Check if the current page is the index page
const isIndexPage = usePathname() === "/";
@@ -11,6 +17,7 @@ export const Logo = ({ christmas }: { christmas: boolean }) => {
className={`${styles.logo} ${styles.main} ${isIndexPage && styles.index}`}
>
{christmas && (
-