diff --git a/src/components/Header.astro b/src/components/Header.astro
index a5f27da..a9f18eb 100644
--- a/src/components/Header.astro
+++ b/src/components/Header.astro
@@ -1,16 +1,95 @@
---
const pathname = new URL(Astro.request.url).pathname;
const currentPath = pathname.slice(1); // remove the first "/"
+type DropdownItem = {
+ label: string;
+ href: string;
+ className: string;
+};
+const productItems: DropdownItem[] = [
+ { label: 'netBook Deutsch', href: 'https://netbook-deutsch.de/', className: "blue" },
+ { label: 'eLearning Module', href: 'https://module.dilewe.de/', className: "pink" },
+];
+
---