Skip to content
Snippets Groups Projects
Commit 3df267db authored by Lucy Hao's avatar Lucy Hao :moyai:
Browse files

add headers

parent 9fed04b8
No related branches found
No related tags found
No related merge requests found
Pipeline #287955 passed
......@@ -42,9 +42,12 @@ const ContentLayout = ({ meta, children }) => {
{meta.coverImage ? (
<>
<CoverImage style={{ backgroundImage: `url(${meta.image})` }}>
{meta.showTitle && (
<Header title={meta?.title} white subtitle={meta?.subtitle} />
)}
{meta.showTitle &&
(meta.black ? (
<Header title={meta?.title} subtitle={meta?.subtitle} />
) : (
<Header title={meta?.title} white subtitle={meta?.subtitle} />
))}
</CoverImage>
</>
) : (
......
......@@ -23,6 +23,7 @@ const Menu = () => {
{ to: "/description", label: "Description" },
{ to: "/design", label: "Design" },
{ to: "/usermanual", label: "User Manual" },
{ to: "/contribution", label: "Contribution" },
],
},
// EXPERIMENTS
......
......@@ -4,6 +4,11 @@ import Figure from "@/components/Figure";
export const meta = {
title: "Results",
subtitle: "",
coverImage: true,
image:
"https://static.igem.wiki/teams/4796/wiki/results/img-6074.jpg",
rotating: false,
showTitle: true,
};
export const Page = ({ children }) => (
......@@ -295,7 +300,7 @@ construct caused the largest metabolic burden, likely due to the large
size of the recombinant protein product and the fact that it codes for
only the DhaK enzyme and not any prior enzymes in the methanol
metabolism pathway. However, when all three enzymes are together in the
*E. coli* coculture of both PC Dhak and Mdh Fls, the cell density was
_E. coli_ coculture of both PC Dhak and Mdh Fls, the cell density was
restored back to similar levels as the control. This demonstrates the
success of the dual plasmid methanol utilization vector.
......
......@@ -4,6 +4,11 @@ import Figure from "@/components/Figure";
export const meta = {
title: "Safety",
subtitle: "",
coverImage: true,
image: "https://static.igem.wiki/teams/4796/wiki/results/img-5280.jpg",
rotating: false,
showTitle: true,
black: true,
};
<div className="padded-content">
......
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