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

h2 einheitlich

parent e9e1c93c
No related branches found
No related tags found
No related merge requests found
Pipeline #414847 failed
...@@ -37,14 +37,7 @@ export function H1({text}:{text: string}){ ...@@ -37,14 +37,7 @@ export function H1({text}:{text: string}){
) )
} }
/* export function Hprompt({text}:{text: string}){
return(
<div>
<h2>{text}</h2>
<hr/>
</div>
)
} */
export function H2({text, id}:{text: string, id: string}){ export function H2({text, id}:{text: string, id: string}){
return( return(
<div> <div>
......
import { useEffect } from "react"; import { useEffect } from "react";
import { useLocation } from "react-router-dom"; import { useLocation } from "react-router-dom";
import { openFromOtherPage } from "../components/Buttons"; import { openFromOtherPage } from "../components/Buttons";
import H1 from "../components/headings"; import H1, { H2 } from "../components/headings";
export function Partners() { export function Partners() {
const location = useLocation(); const location = useLocation();
...@@ -42,7 +42,7 @@ export function Partners() { ...@@ -42,7 +42,7 @@ export function Partners() {
<br/> <br/>
{/* GOLD */} {/* GOLD */}
<h2>Sponsor category Gold</h2> <H2 id="gold" text="Sponsor category Gold"/>
<br/> <br/>
<div className="col"> <div className="col">
<div className="row align-items-center"> <div className="row align-items-center">
...@@ -114,7 +114,7 @@ export function Partners() { ...@@ -114,7 +114,7 @@ export function Partners() {
</div> </div>
<br/> <br/> <br/> <br/>
{/* SILVER */} {/* SILVER */}
<h2>Sponsor category silver</h2> <H2 text="Sponsor category silver" id="silver"/>
<br/> <br/> <br/> <br/>
<div id="project-portrait" className="sponsor-portrait" style={{padding: "20px"}}> <div id="project-portrait" className="sponsor-portrait" style={{padding: "20px"}}>
<div className="row align-items-center"> <div className="row align-items-center">
...@@ -150,7 +150,7 @@ export function Partners() { ...@@ -150,7 +150,7 @@ export function Partners() {
</div> </div>
<br/> <br/> <br/> <br/>
{/* BRONZE */} {/* BRONZE */}
<h2>Sponsor category bronze</h2> <H2 text="Sponsor category bronze" id="bronze"></H2>
<br/> <br/> <br/> <br/>
<div id="project-portrait" className="sponsor-portrait" style={{padding: "20px"}}> <div id="project-portrait" className="sponsor-portrait" style={{padding: "20px"}}>
<div className="row align-items-center"> <div className="row align-items-center">
...@@ -174,7 +174,7 @@ export function Partners() { ...@@ -174,7 +174,7 @@ export function Partners() {
<br/> <br/> <br/> <br/>
<div className="row align-items-center"> <div className="row align-items-center">
<div id="project-text" className="col sponsor-text-left"> <div id="project-text" className="col sponsor-text-left">
<h2>BFH MeetUp sponsors...</h2> <H2 text="BFH MeetUp sponsors..." id="bfh-sponsors"/>
<br/> <br/>
<p></p> <p></p>
</div> </div>
...@@ -265,12 +265,12 @@ export function Partners() { ...@@ -265,12 +265,12 @@ export function Partners() {
</div> </div>
<div id="meetup-text" className="col sponsor-text-right" style={{textAlign: "right"}}> <div id="meetup-text" className="col sponsor-text-right" style={{textAlign: "right"}}>
<h2> ... and collaborators </h2> <H2 text="... and collaborators " id="bfh-collabs"/>
<br/> <br/>
</div> </div>
</div> </div>
<br/> <br/> <br/> <br/>
<h2>Other collaborators</h2> <H2 text="Other collaborators" id="otehrs"/>
<br/> <br/> <br/> <br/>
<div className="row align-items-center"> <div className="row align-items-center">
<div id="idt-text" className="col sponsor-text-left"> <div id="idt-text" className="col sponsor-text-left">
......
import { useEffect } from "react"; import { useEffect } from "react";
import { useLocation } from "react-router-dom"; import { useLocation } from "react-router-dom";
import { openFromOtherPage } from "../components/Buttons"; import { openFromOtherPage } from "../components/Buttons";
import { H2, H3 } from "../components/headings";
export function Proof() { export function Proof() {
const location = useLocation(); const location = useLocation();
...@@ -32,11 +33,11 @@ export function Proof() { ...@@ -32,11 +33,11 @@ export function Proof() {
return ( return (
<> <>
<section id="prelim-2000"> <section >
<h2>Preliminary test with lipofectamine 2000</h2> <H2 text="Preliminary test with lipofectamine 2000" id="prelim-2000"/>
<h3>Seeding</h3> <H3 text="Seeding" id="prelim-2000-seeding"/>
<h3>Transfection</h3> <H3 text="Transfection" id="prelim-2000-transfection"/>
<h3>Microscopy</h3> <H3 text="Microscopy" id="prelim-2000-microscopy"/>
<table> <table>
<tr> <tr>
<th>Plasmid</th> <th>Plasmid</th>
...@@ -50,11 +51,11 @@ export function Proof() { ...@@ -50,11 +51,11 @@ export function Proof() {
</tr> </tr>
</table> </table>
</section> </section>
<section id="pos-control-2000"> <section >
<h2>Positiv control and optimization</h2> <H2 text="Positiv control and optimization with lipofectamin 2000" id="pos-control-2000"/>
<h3>Seeding</h3> <H3 text="Seeding" id="pos-control-2000-seeding"/>
<h3>Transfection</h3> <H3 text="Transfection" id="pos-control-2000-transfection"/>
<h3>Microscopy</h3> <H3 text="Microscopy" id="pos-control-2000-microscopy"/>
<table> <table>
<tr> <tr>
<th>Plasmid</th> <th>Plasmid</th>
...@@ -68,11 +69,11 @@ export function Proof() { ...@@ -68,11 +69,11 @@ export function Proof() {
</tr> </tr>
</table> </table>
</section> </section>
<section id="pos-control-3000"> <section >
<h2>Positiv control and optimization</h2> <H2 text="Positiv control and optimization with lipofectamin 3000" id="pos-control-3000"/>
<h3>Seeding</h3> <H3 text="Seeding" id="pos-control-3000-seeding"/>
<h3>Transfection</h3> <H3 text="Transfection" id="pos-control-3000-transfection"/>
<h3>Microscopy</h3> <H3 text="Microscopy" id="pos-control-3000-microscopy"/>
<table> <table>
<tr> <tr>
<th>Plasmid</th> <th>Plasmid</th>
...@@ -87,10 +88,10 @@ export function Proof() { ...@@ -87,10 +88,10 @@ export function Proof() {
</table> </table>
</section> </section>
<section id="poc-3000"> <section id="poc-3000">
<h2>Preliminary test with lipofectamine 2000</h2> <H2 text="Preliminary test with lipofectamine 3000" id="poc-3000"/>
<h3>Seeding</h3> <H3 text="Seeding" id="poc-3000-seeding"/>
<h3>Transfection</h3> <H3 text="Transfection" id="poc-3000-transfection"/>
<h3>Microscopy</h3> <H3 text="Microscopy" id="poc-3000-microscopy"/>
<table> <table>
<tr> <tr>
<th>Plasmid</th> <th>Plasmid</th>
......
import { useEffect } from "react"; import { useEffect } from "react";
import { useLocation } from "react-router-dom"; import { useLocation } from "react-router-dom";
import { openFromOtherPage } from "../components/Buttons"; import { openFromOtherPage } from "../components/Buttons";
import { H2 } from "../components/headings";
export function Team() { export function Team() {
const location = useLocation(); const location = useLocation();
...@@ -36,7 +37,7 @@ export function Team() { ...@@ -36,7 +37,7 @@ export function Team() {
<> <>
<br/> <br/>
<br/> <br/>
<h2>Members</h2> <H2 text="Members" id="members"/>
<div className="row center"> <div className="row center">
<div className="col"> <div className="col">
<Steckbrief <Steckbrief
...@@ -171,7 +172,7 @@ export function Team() { ...@@ -171,7 +172,7 @@ export function Team() {
</div> </div>
</div> </div>
<h2>Instructor</h2> <H2 text="Instructor" id="instructor"/>
<div className="row center"> <div className="row center">
<div className="col"> <div className="col">
</div> </div>
...@@ -189,7 +190,7 @@ export function Team() { ...@@ -189,7 +190,7 @@ export function Team() {
</div> </div>
</div> </div>
<h2>Advisors</h2> <H2 text="Advisors" id="Advisors"/>
<div className="row center"> <div className="row center">
<div className="col"> <div className="col">
<Steckbrief <Steckbrief
...@@ -213,7 +214,7 @@ export function Team() { ...@@ -213,7 +214,7 @@ export function Team() {
</div> </div>
</div> </div>
<h2>Principal Investigators</h2> <H2 text="Principal Investigators" id="PIS"/>
<div className="row center"> <div className="row center">
<div className="col"> <div className="col">
<Steckbrief <Steckbrief
......
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