Skip to content
Snippets Groups Projects
Commit e4df75e0 authored by Liliana Sanfilippo's avatar Liliana Sanfilippo
Browse files

added drylab page

parent dd73a21b
No related branches found
No related tags found
No related merge requests found
Pipeline #392178 passed
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
......@@ -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"
export function DRYH() {
return (
<>
<div className="row">
<div className="col">
</div>
</div>
<div className="row">
</div>
</>
);
}
\ No newline at end of file
......@@ -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",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment