diff --git a/web/src/app/favicon.ico b/web/src/app/favicon.ico
index 718d6fe..4d83a80 100644
Binary files a/web/src/app/favicon.ico and b/web/src/app/favicon.ico differ
diff --git a/web/src/components/general/Logo.tsx b/web/src/components/general/Logo.tsx
new file mode 100644
index 0000000..90fd178
--- /dev/null
+++ b/web/src/components/general/Logo.tsx
@@ -0,0 +1,59 @@
+import styles from "./logo.module.scss";
+
+export const Logo = () => {
+ return (
+
+
+
+ );
+};
diff --git a/web/src/components/general/logo.module.scss b/web/src/components/general/logo.module.scss
new file mode 100644
index 0000000..c14f6aa
--- /dev/null
+++ b/web/src/components/general/logo.module.scss
@@ -0,0 +1,8 @@
+.logo {
+ color: currentColor;
+ width: 24rem;
+
+ svg {
+ width: 100%;
+ }
+}
\ No newline at end of file
diff --git a/web/src/components/layout/Header.tsx b/web/src/components/layout/Header.tsx
index a49c2cc..f1fba88 100644
--- a/web/src/components/layout/Header.tsx
+++ b/web/src/components/layout/Header.tsx
@@ -2,6 +2,7 @@
import { useState } from "react";
import Link from "next/link";
import styles from "./header.module.scss";
+import { Logo } from "../general/Logo";
export const Header = () => {
const [showMenu, setShowMenu] = useState(false);
@@ -12,7 +13,7 @@ export const Header = () => {
return (