diff --git a/app/[locale]/layout.jsx b/app/[locale]/layout.jsx
index ad1e58cfd2b1f8a85b2c9adf936f97a0c47f793a..c8a9e0f683922d29e22c2c49ab5afd7bc55be54d 100644
--- a/app/[locale]/layout.jsx
+++ b/app/[locale]/layout.jsx
@@ -20,6 +20,22 @@ const ss3 = Source_Sans_3({
   display: "swap",
 });
 
+export async function generateMetadata(
+  { params, searchParams },
+  parent
+) {
+  // read route params
+  const locale = params.locale;
+
+  const description = locale === "de" ?
+    "Wir sind Studierende der ETH, die dir an unseren Events und in unserem Büro kostenlos mit Linux helfen, weil wir Open Source und Freie Software lieben und Dir den Einstieg erleichtern wollen. Jedes Semester organisieren wir Events, die Dich bei der Nutzung und Produktion von freier und offener Wissenschaft, Hardware, Software und Dateiformaten unterstützen." :
+    "We are students at ETH who help you for free with Linux at our events and in our office, because we love Open Source and Free Software and want to help you to get started. Each semester, we organize events to help you use and produce Free and Open Science, Hardware, Software and File Formats.";
+  return {
+    title: "TheAlternative",
+    description,
+  }
+}
+
 export function generateStaticParams() {
   return getStaticParams();
 }
diff --git a/app/[locale]/page.jsx b/app/[locale]/page.jsx
index d7bfe2dfb33b4952dc3f46eb19ce571e052047fe..c5548e9d5f766d2c0539d376cbbb81647bc5941e 100644
--- a/app/[locale]/page.jsx
+++ b/app/[locale]/page.jsx
@@ -7,25 +7,6 @@ import Events from "/components/events";
 import About from "/components/about";
 import Philosophy from "/components/philosophy";
 
-export async function generateMetadata(
-  { params, searchParams },
-  parent
-) {
-  // read route params
-  const locale = params.locale;
-
-  const description = locale === "de" ?
-    "Wir sind Studierende der ETH, die dir an unseren Events und in unserem Büro kostenlos mit Linux helfen, weil wir Open Source und Freie Software lieben und Dir den Einstieg erleichtern wollen. Jedes Semester organisieren wir Events, die Dich bei der Nutzung und Produktion von freier und offener Wissenschaft, Hardware, Software und Dateiformaten unterstützen." :
-    "We are students at ETH who help you for free with Linux at our events and in our office, because we love Open Source and Free Software and want to help you to get started. Each semester, we organize events to help you use and produce Free and Open Science, Hardware, Software and File Formats.";
-  return {
-    title: "TheAlternative",
-    description,
-    openGraph: {
-      images: ['/some-specific-page-image.jpg', ...previousImages],
-    },
-  }
-}
-
 export default function Page({ params: { locale } }) {
   return (
     <div>