From e4df75e072128403542add1f212cc0501aa5e332 Mon Sep 17 00:00:00 2001
From: liliana <liliana.sanfilippo@uni-bielefeld.de>
Date: Fri, 12 Jul 2024 14:39:48 +0200
Subject: [PATCH] added drylab page

---
 src/contents/drylab.tsx | 18 ++++++++++++
 src/contents/index.tsx  |  2 ++
 src/headers/dry-h.tsx   | 15 ++++++++++
 src/pages.ts            | 64 ++++++++++++++++++++++++++++-------------
 4 files changed, 79 insertions(+), 20 deletions(-)
 create mode 100644 src/contents/drylab.tsx
 create mode 100644 src/headers/dry-h.tsx

diff --git a/src/contents/drylab.tsx b/src/contents/drylab.tsx
new file mode 100644
index 00000000..c837da7c
--- /dev/null
+++ b/src/contents/drylab.tsx
@@ -0,0 +1,18 @@
+
+export function Drylab() {
+
+    return (
+      <>
+        <div className="row">
+          <div className="col">
+            <h2>Wiki under construction!</h2>
+            <hr/>
+          </div>
+        </div>
+        <div className="row">
+      
+        </div>
+      </>
+    );
+  }
+  
\ No newline at end of file
diff --git a/src/contents/index.tsx b/src/contents/index.tsx
index ee6dea42..e92e8f33 100644
--- a/src/contents/index.tsx
+++ b/src/contents/index.tsx
@@ -28,6 +28,7 @@ export * from "./sustainable.tsx"; */
 // Contribution
 export * from "./Bfh.tsx";
 export * from "./wiki.tsx";
+export * from "./drylab.tsx";
 export * from "./impressum.tsx";
 export * from "./partners.tsx";
 export * from "./interviews.tsx"; 
@@ -46,5 +47,6 @@ export * from "../headers/team-h.tsx"
 export * from "../headers/wiki-h.tsx"
 export * from "../headers/ints-h.tsx"
 export * from "../headers/spons-h.tsx"
+export * from "../headers/dry-h.tsx"
 
 
diff --git a/src/headers/dry-h.tsx b/src/headers/dry-h.tsx
new file mode 100644
index 00000000..b889131b
--- /dev/null
+++ b/src/headers/dry-h.tsx
@@ -0,0 +1,15 @@
+export function DRYH() {
+
+    return (
+      <>
+        <div className="row">
+          <div className="col">
+            
+          </div>
+        </div>
+        <div className="row">
+      
+        </div>
+      </>
+    );
+  }
\ No newline at end of file
diff --git a/src/pages.ts b/src/pages.ts
index 9a502cb4..088a358c 100644
--- a/src/pages.ts
+++ b/src/pages.ts
@@ -5,6 +5,7 @@
   Experiments,
   Home,
   Bfh,
+  Drylab,
   Attributions,
   HumanPractices,
   Partners,
@@ -18,7 +19,7 @@
   Impressum
 } from "./contents"; 
 
-import { BFHH, HOMEH, HPH, INTSH, SPONH, RESH, ATTH, CONTH, DESCH, EXPH, IMPH, NOTEH, SAFEH, TEAMH, WIKIH } from "./contents";
+import { BFHH, DRYH, HOMEH, HPH, INTSH, SPONH, RESH, ATTH, CONTH, DESCH, EXPH, IMPH, NOTEH, SAFEH, TEAMH, WIKIH } from "./contents";
 
 interface Base {
   name: string | undefined;
@@ -119,6 +120,14 @@ const Pages: (Page | Folder)[] = [
           header: "Demonstrate engineering success in a technical aspect of your project by going through at least one iteration of the engineering design cycle. This achievement should be distinct from your Contribution for Bronze.",
           navlist: [""],
         }, */
+        {
+          name: "Dry Lab",
+          title: "Dry Lab",
+          path: "/dry-lab",
+          component: Drylab,
+          header: DRYH,
+          navlist: [""],
+        },
         {
           name: "Experiments",
           title: "Experiments",
@@ -162,18 +171,12 @@ const Pages: (Page | Folder)[] = [
        navlist: [""],
     },
     {
-      name: "Other",
-      folder: [
-        {
-          name: "Interviews",
-          title: "Interviews",
-          path: "/interviews",
-          component: Ints,
-          header: INTSH, 
-          navlist: [""],
-        },
-      ],
-      
+      name: "Interviews",
+      title: "Interviews",
+      path: "/interviews",
+      component: Ints,
+      header: INTSH, 
+      navlist: [""],
     },
     {
       name: "Contribution",
@@ -256,13 +259,21 @@ export const NavPages: (Page | Folder)[] = [
           navlist: ["Abstract", "Cystic Fibrosis", "Our motivation", "Approach", "Delivery", "Our vision", "References"]
         },
         {
-          name: "Experiments",
-          title: "Experiments",
+          name: "Wet Lab",
+          title: "Wet Lab",
           path: "/experiments",
           component: Experiments,
           header: EXPH,
           navlist: [""],
         },
+        {
+          name: "Dry Lab",
+          title: "Dry Lab",
+          path: "/dry-lab",
+          component: Drylab,
+          header: DRYH,
+          navlist: [""],
+        },
         {
           name: "Notebook",
           title: "Notebook",
@@ -291,11 +302,24 @@ export const NavPages: (Page | Folder)[] = [
     },
     {
       name: "Human Practices",
-      title: "Human Practices",
-      path: "/human-practices",
-      component: HumanPractices,
-      header: HPH,
-       navlist: [""],
+      folder: [
+        {
+          name: "Integrated Human Practices",
+          title: "Integrated Human Practices",
+          path: "/human-practices",
+          component: HumanPractices,
+          header: HPH,
+           navlist: [""],
+        },
+        {
+          name: "Interviews",
+          title: "Interviews",
+          path: "/interviews",
+          component: Ints,
+          header: INTSH, 
+          navlist: [""],
+        },
+      ]
     },
     {
       name: "Contribution",
-- 
GitLab