Skip to content
Snippets Groups Projects
Commit a14755be authored by Annie Yu's avatar Annie Yu
Browse files

Added team jamboree pic to awards page

parent 7e7ee612
No related tags found
No related merge requests found
Pipeline #529765 passed
"use client";
import React from "react";
import { TableOfContents } from "@/components/toc";
import Cover from "@/components/cover";
import SectionContainer from "@/components/section";
import Card from "@/components/card";
const AwardsPage = () => {
return (
......@@ -18,7 +20,30 @@ const AwardsPage = () => {
</div>
</Cover>
{/* MAIN CONTENT */}
<SectionContainer className="bg-primaryColor"></SectionContainer>
<SectionContainer className="bg-primaryColor">
<section className="mb-4 col-span-12">
<Card>
<h2
id="2024 Jamboree Results"
className="text-6xl md:text-5xl text-header font-bold py-3 text-center"
>
2024 Jamboree Results
</h2>
<div className="pb-5 flex flex-col items-center justify-center round">
<img
src="https://static.igem.wiki/teams/5119/awards/54107708860-e8989e7c8a-o.webp"
className="rounded-md h-[500px] w-auto"
/>
<p className="my-5 text-xs md:text-sm lg:text-base text-center">
<span className="font-bold">Figure 1.</span> OD660 to OD600
Standard Conversion Curve. The equation for this linear
relationship is y=0.9034x with y being the OPD660 value and x
being the OD600 value.
</p>
</div>
</Card>
</section>
</SectionContainer>
</>
);
};
......
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