diff --git a/web/src/app/layout.tsx b/web/src/app/layout.tsx
index b0aaa4b..f9a9170 100644
--- a/web/src/app/layout.tsx
+++ b/web/src/app/layout.tsx
@@ -15,6 +15,9 @@ export default function RootLayout({
}>) {
return (
+
+
+
{children}
diff --git a/web/src/components/events/EventContainer.tsx b/web/src/components/events/EventContainer.tsx
index 7f57e71..bfd15fb 100644
--- a/web/src/components/events/EventContainer.tsx
+++ b/web/src/components/events/EventContainer.tsx
@@ -51,6 +51,7 @@ export const EventContainer = ({
+
{mode === "list" && }
{mode === "calendar" && }
diff --git a/web/src/components/events/eventContainer.module.scss b/web/src/components/events/eventContainer.module.scss
index 608d78e..5696730 100644
--- a/web/src/components/events/eventContainer.module.scss
+++ b/web/src/components/events/eventContainer.module.scss
@@ -19,6 +19,8 @@
button {
border-radius: 0;
+ background: var(--color-deepBrick);
+ color: var(--color-goldenBeige);
}
}
diff --git a/web/src/components/general/Logo.tsx b/web/src/components/general/Logo.tsx
index 1d83414..47f9798 100644
--- a/web/src/components/general/Logo.tsx
+++ b/web/src/components/general/Logo.tsx
@@ -6,6 +6,96 @@ export const Logo = () => {
// Check if the current page is the index page
const isIndexPage = usePathname() === "/";
+ return (
+
+
+
+ );
+};
+
+export const LogoText = () => {
+ // Check if the current page is the index page
+ const isIndexPage = usePathname() === "/";
+
return (