diff --git a/public/aux-text.svg b/public/aux-text.svg
new file mode 100644
index 0000000..3e17b5f
--- /dev/null
+++ b/public/aux-text.svg
@@ -0,0 +1,301 @@
+
+
+
+
diff --git a/public/auxolotl.svg b/public/auxolotl.svg
new file mode 100644
index 0000000..11c144c
--- /dev/null
+++ b/public/auxolotl.svg
@@ -0,0 +1,34 @@
+
+
+
diff --git a/src/components/Header.astro b/src/components/Header.astro
index b300f1d..8dbe0a0 100644
--- a/src/components/Header.astro
+++ b/src/components/Header.astro
@@ -4,35 +4,57 @@ interface Props {}
import { useTranslations } from "../i18n/utils";
import type { Params } from "../i18n/utils";
import { Image } from "astro:assets";
-import aux from "../../public/aux.svg";
+import auxolotl from "../../public/auxolotl.svg";
const { lang } = Astro.params as Params;
const translation = useTranslations(lang);
---