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

data

parent eb1a00b6
No related branches found
No related tags found
No related merge requests found
Pipeline #418691 failed
......@@ -2,32 +2,30 @@ import {ScrollLinkWithChild } from "../ScrollLink";
export interface TimelineDatenpunkt {
title?: string;
title?: string; /* Prof. , Dr., ... */
vorname: string;
nachnname: string;
pictureurl: string;
tag: StakeholderTag;
heading: string;
interviewtabid: string;
type?: TypeTag;
type?: TypeTag; /* nur falls es ein meta tag ist */
affiliation?: string;
job?: string;
cardtext: string;
language?: Language;
quote: string;
quoteVorname?: string;
quoteVorname?: string; /* Wenn die quote nicht von der Person ist über die der Text ist */
quoteNachname?: string;
aimofcontact: string | Array<string> | Array<React.ReactNode>;
insights: string | Array<string> | Array<React.ReactNode>;
clarification?: string | Array<string> | Array<React.ReactNode>;
implementation: string | Array<string> | Array<React.ReactNode>;
aimofcontact: string | Array<string> | Array<React.ReactNode>; /* Sobald Zitierungen drin sind oder Links muss es HTML Code sein, ansonsten gehen strings */
insights: string | Array<string> | Array<React.ReactNode>; /* Sobald Zitierungen drin sind oder Links muss es HTML Code sein, ansonsten gehen strings */
clarification?: string | Array<string> | Array<React.ReactNode>; /* Sobald Zitierungen drin sind oder Links muss es HTML Code sein, ansonsten gehen strings */
implementation: string | Array<string> | Array<React.ReactNode>; /* Sobald Zitierungen drin sind oder Links muss es HTML Code sein, ansonsten gehen strings */
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" */
pictureurl_other?: string;
quote_addon?: string;
more_pictures?: Array<string> ;
references?: Array<React.ReactNode>;
references?: Array<React.ReactNode>; /* Muss HTML Code sein - Liliana erstellt den aus Bib dateien */
}
type StakeholderTag = 'Industry' | 'Academia' | 'Patient' | 'Medical Professional' | 'Milestone' | 'Other';
type TypeTag = 'meta' ;
......@@ -504,7 +502,6 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
language: "de",
quote: "",
aimofcontact: "",
insights: "",
implementation: "",
},
......@@ -538,7 +535,6 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
language: "de",
quote: "",
aimofcontact: "",
insights: "",
implementation: "",
},
......@@ -597,7 +593,6 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
cardtext: "",
quote: "",
aimofcontact: "",
insights: "",
implementation: "",
},
......
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