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

kaya

parent a9a22a27
No related branches found
No related tags found
No related merge requests found
......@@ -75,7 +75,7 @@ html{
}
.scrolllink span{
color: var(--background) !important;
color: var(--accen-secondary) !important;
}
.small-row{
......
import { NoButtTimelineItem, PanelTimelineItem, TimelineItemPic, TimelineItemTwoPic } from "./VerticalTimeline";
import SimpleSlider from "./Slider";
import { SupScrollLink } from "./ScrollLink";
import { ScrollLink, SupScrollLink } from "./ScrollLink";
export function BFHTimeline () {
return(
......@@ -196,10 +196,7 @@ export function BFHTimeline () {
</div>
<span>
</span>
<div id="teampres" style={{display: "none"}}>
So much more
</div>
</span>
</NoButtTimelineItem>
<NoButtTimelineItem
url="https://static.igem.wiki/teams/5247/placeholders/placehilderperson.jpeg"
......@@ -208,8 +205,8 @@ export function BFHTimeline () {
color='var(--accent-primary)'
>
<h5>Poster Exhibition Booth </h5>
[Link virtual exhibition]
<h5>Poster Exhibition Booth</h5>
<p> Visit the <ScrollLink label="Virtual Poster Exhibition" targetId="BFH European MeetUp4H" />!</p>
<div className="col bfh-slider">
<SimpleSlider>
<img className="" src="https://static.igem.wiki/teams/5247/photos/meetup/exhibition/posterexhibition-plasmid-factory.webp"/>
......
......@@ -28,8 +28,32 @@ export interface TimelineDatenpunkt {
references?: Array<React.ReactNode>; /* Muss HTML Code sein - Liliana erstellt den aus Bib dateien */
interview?: React.ReactNode;
}
export interface TimelineDatenpunktZwei {
title?: string; /* Prof. , Dr., ... */
vorname: string;
nachnname: string;
pictureurl: string;
tag: StakeholderTag;
heading: string;
interviewtabid: string;
type: TypeTag; /* nur falls es ein meta tag ist */
affiliation?: string;
job?: string;
cardtext: string;
language?: Language;
quote: string;
quoteVorname?: string; /* Wenn die quote nicht von der Person ist über die der Text ist */
quoteNachname?: string;
text: Array<string> | Array<React.ReactNode>;
pictureurl_interview?: string; /* Picture that goes into the paragraph "Insights" */
pictureurl_aim?: string; /* Picture that goes into the paragraph "Aim of contact" */
pictureurl_implementation?: string; /* Picture that goes into the paragraph "Implementation" */
more_pictures?: Array<string> ;
references?: Array<React.ReactNode>; /* Muss HTML Code sein - Liliana erstellt den aus Bib dateien */
interview?: React.ReactNode;
}
type StakeholderTag = 'Industry' | 'Academia' | 'Patient' | 'Medical Professional' | 'Milestone' | 'Other';
type TypeTag = 'meta' ;
type TypeTag = 'meta' | 'kaya' ;
type Language = 'en' | 'de';
const pics: { [key: string]: string } = {
......@@ -68,7 +92,7 @@ const pics: { [key: string]: string } = {
Fehlende Infos einfach leer lassen und keine Dummy-Texte einfügen!
*/
export const timelinedata: Array<TimelineDatenpunkt> = [
export const timelinedata: Array<TimelineDatenpunkt> | Array<TimelineDatenpunktZwei> = [
{
vorname: "Building the team",
nachnname: "",
......
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