diff --git a/src/contents/drylab.tsx b/src/contents/drylab.tsx new file mode 100644 index 0000000000000000000000000000000000000000..c837da7ca7a053b8106bc5526ab87ee2ba9b0dfe --- /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 ee6dea421ab4f8e6ba3748200a22b80b45b770e7..e92e8f337c95aaa5cb87b1e69b5eb6868253cc45 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 0000000000000000000000000000000000000000..b889131b6707d39d43a93c8536e58a81539374e2 --- /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 9a502cb455355fef2ed86f28a12f5f41a3039ef1..088a358c59b9f68251b136697a2202153f3b7b15 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",