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

added page engineering

parent e7590876
No related branches found
No related tags found
No related merge requests found
Pipeline #392185 passed
export function Engineering() {
return (
<>
<div className="row mt-4">
<div className="col-lg-8">
</div>
</div>
</>
);
}
\ No newline at end of file
......@@ -7,7 +7,7 @@ export * from "./attributions.tsx";
// Project
export * from "./contribution.tsx";
export * from "./description.tsx";
/* export * from "./engineering.tsx"; */
export * from "./engineering.tsx";
export * from "./experiments.tsx";
export * from "./notebook.tsx";
export * from "./results.tsx";
......@@ -48,5 +48,6 @@ 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 * from "../headers/eng-h.tsx"
export function ENGH() {
return (
<>
<div className="row">
<div className="col">
</div>
</div>
<div className="row">
</div>
</>
);
}
\ No newline at end of file
import {
Contribution,
Description,
/* Engineering, */
Engineering,
Experiments,
Home,
Bfh,
......@@ -19,7 +19,7 @@
Impressum
} from "./contents";
import { BFHH, DRYH, HOMEH, HPH, INTSH, SPONH, RESH, ATTH, CONTH, DESCH, EXPH, IMPH, NOTEH, SAFEH, TEAMH, WIKIH } from "./contents";
import { BFHH, ENGH, DRYH, HOMEH, HPH, INTSH, SPONH, RESH, ATTH, CONTH, DESCH, EXPH, IMPH, NOTEH, SAFEH, TEAMH, WIKIH } from "./contents";
interface Base {
name: string | undefined;
......@@ -80,6 +80,14 @@ const Pages: (Page | Folder)[] = [
header: DRYH,
navlist: [""],
},
{
name: "Engineering Success",
title: "Engineering",
path: "/engineering",
component: Engineering,
header: ENGH,
navlist: [""],
},
{
name: "Experiments",
title: "Experiments",
......@@ -220,11 +228,11 @@ export const NavPages: (Page | Folder)[] = [
name: "Project",
folder: [
{
name: "Contribution",
title: "Contribution",
path: "/contribution",
component: Contribution,
header: CONTH,
name: "Engineering Success",
title: "Engineering",
path: "/engineering",
component: Engineering,
header: ENGH,
navlist: [""],
},
{
......@@ -301,6 +309,14 @@ export const NavPages: (Page | Folder)[] = [
{
name: "Contribution",
folder: [
{
name: "Contribution",
title: "Contribution",
path: "/contribution",
component: Contribution,
header: CONTH,
navlist: [""],
},
{
name: "BFH",
title: "BFH European MeetUp",
......
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