diff --git a/app/frontend/styles/components/header.scss b/app/frontend/styles/components/header.scss
new file mode 100644
index 0000000..40637c4
--- /dev/null
+++ b/app/frontend/styles/components/header.scss
@@ -0,0 +1,17 @@
+#header {
+ @apply flex h-12 p-2 gap-2 items-center;
+ @apply bg-gray-300 dark:bg-gray-700;
+
+ &__logo {
+ @apply h-full dark:hidden;
+ }
+
+ &__logo-dark {
+ @apply h-full hidden dark:block;
+ }
+
+ &__logo-text {
+ @apply text-lg text-center text-black dark:text-white;
+ }
+
+}
diff --git a/app/frontend/templates/components/header.html.twig b/app/frontend/templates/components/header.html.twig
index fa0ed3a..b2de304 100644
--- a/app/frontend/templates/components/header.html.twig
+++ b/app/frontend/templates/components/header.html.twig
@@ -1,51 +1,14 @@
-Euph
-
-
-
-
-
+ Euph
+ {% include 'components/burger-menu.html.twig' %}