diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx
index 52ae0ff9bd34ff54979c529b654e1a708abd3f2d..fd0a926dc9c7abf7f867a2a30433fbbc1d13c2c7 100644
--- a/src/components/Footer.tsx
+++ b/src/components/Footer.tsx
@@ -12,7 +12,7 @@ export function Footer() {
       <div className="container">
       <div className="col zweirem">
         <span className="left"> 
-          <a href="{{ url_for('pages', page='impressum') }}" className="middle">Impressum</a>
+          <a href="../impressum" className="middle">Impressum</a>
         </span>
         <span className="right">
         <a href="https://www.linkedin.com/in/igem-bielefeld-cebitec">
@@ -37,7 +37,7 @@ export function Footer() {
       <div className="col-sm-8">
         <div className="row align-items-center">
           <div className="col">
-            <a href="https://2024.igem.wiki/bielefeld-cebitec/partners">
+            <a href="../partners">
               <h6 className="alink">Spornsors and partners</h6>
             </a>
           </div>
diff --git a/src/contents/impressum.tsx b/src/contents/impressum.tsx
index 83d798c439bdc320553f93ee5c532f9d9830f5e3..fa18ac8a4b4baf2ca749a665d3eaaecd61d3ec59 100644
--- a/src/contents/impressum.tsx
+++ b/src/contents/impressum.tsx
@@ -1,7 +1,7 @@
 //import { Inspirations, InspirationLink } from "../components";
 /* import { Sidebar } from "react-pro-sidebar"; */
 
-export function Home() {
+export function Impressum() {
     return (
       <>
         <div className="row">
diff --git a/src/contents/index.tsx b/src/contents/index.tsx
index 2ec44d0c3fa52afc2b8d7b17de3794eac58214d1..e45485ede9fb86e413eca259f57e2e27d27a3b5e 100644
--- a/src/contents/index.tsx
+++ b/src/contents/index.tsx
@@ -28,5 +28,6 @@ export * from "./sustainable.tsx"; */
 // Contribution
 export * from "./Bfh.tsx";
 export * from "./wiki.tsx";
+export * from "./impressum.tsx";
 
 
diff --git a/src/pages.ts b/src/pages.ts
index 70c417c5b3a10d678125d1e1284be9be5d847d9d..ebfb77b440a7581363c28b263f3e6efdcffb9c73 100644
--- a/src/pages.ts
+++ b/src/pages.ts
@@ -12,7 +12,8 @@
   Safety,
   Team,
  /*  Sustainable, */
-  Wiki 
+  Wiki,
+  Impressum
 } from "./contents"; 
 
 interface Base {
@@ -61,6 +62,14 @@ const Pages: (Page | Folder)[] = [
           lead: "In the iGEM Competition, we celebrate student effort and achievement. The Attributions form helps the judges differentiate between what students accomplished from how their external collaborators supported them. Therefore, teams must clearly explain on the standard Project Attributions form what work they have conducted by themselves and what has been done by others.",
           navlist: [""],
         },
+        {
+          name: "Impressum",
+          title: "Impressum",
+          path: "/impressum",
+          component: Impressum,
+          lead: "In the iGEM Competition, we celebrate student effort and achievement. The Attributions form helps the judges differentiate between what students accomplished from how their external collaborators supported them. Therefore, teams must clearly explain on the standard Project Attributions form what work they have conducted by themselves and what has been done by others.",
+          navlist: [""],
+        },
       ],
     },
     {