From f5d26e1fcbcea3145204e172c9ca95ab7dc20869 Mon Sep 17 00:00:00 2001
From: liliana <liliana.sanfilippo@uni-bielefeld.de>
Date: Wed, 11 Sep 2024 23:17:10 +0200
Subject: [PATCH] data

---
 src/components/data/hptimelinedata.tsx | 21 ++++++++-------------
 1 file changed, 8 insertions(+), 13 deletions(-)

diff --git a/src/components/data/hptimelinedata.tsx b/src/components/data/hptimelinedata.tsx
index 665b9998..a63f1339 100644
--- a/src/components/data/hptimelinedata.tsx
+++ b/src/components/data/hptimelinedata.tsx
@@ -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: "",
   },
-- 
GitLab