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

added awards page

parent 55988a92
No related branches found
No related tags found
No related merge requests found
Pipeline #529761 passed
"use client";
import React from "react";
import Cover from "@/components/cover";
import SectionContainer from "@/components/section";
const AwardsPage = () => {
return (
<>
{/* TITLE COVER */}
<Cover title="Awards" className="bg-secondaryColor relative">
<div className="absolute bottom-0 inset-x-0 w-full">
<img
className="w-2/5 h-auto object-contain"
src="https://static.igem.wiki/teams/5119/temp-images/attributions-temp-cover.png"
alt="attribution page cover"
/>
</div>
</Cover>
{/* MAIN CONTENT */}
<SectionContainer className="bg-primaryColor">
<section className="col-span-12 mt-10 mb-40 md:pt-24 px-8 md:px-12 xl:px-14 py-8 md:py-10 lg:py-12 bg-cardBase rounded-lg shadow-lg">
<iframe
id="igem-attribution-form"
className="w-full h-screen"
src="https://attributions.igem.org/?team=Austin-utexas&year=2024"
></iframe>
</section>
</SectionContainer>
</>
);
};
export default AwardsPage;
......@@ -57,6 +57,10 @@ export const teams: NavigationLink[] = [
];
export const awards: NavigationLink[] = [
{
title: "Awards",
path: "/awards",
},
{
title: "Education",
path: "/education",
......
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