diff --git a/src/contents/Human Practices/HP-abstract.tsx b/src/contents/Human Practices/HP-abstract.tsx new file mode 100644 index 0000000000000000000000000000000000000000..58191a2a7c733aea0344b7b93d0426c181a956ba --- /dev/null +++ b/src/contents/Human Practices/HP-abstract.tsx @@ -0,0 +1,11 @@ +import { LoremMedium } from "../../components/Loremipsum" +import { Section } from "../../components/sections" + +export function HPAbstract(){ + + return( + <Section title="Abstract" id="Abstract"> + <LoremMedium/> + </Section> + ) +} \ No newline at end of file diff --git a/src/contents/Human Practices/human-practices.tsx b/src/contents/Human Practices/human-practices.tsx index fc0025993841e748deb1e3de84e04fa947573f4b..390fb2105d2f798431d9e6692d7c6b274eaa3d33 100644 --- a/src/contents/Human Practices/human-practices.tsx +++ b/src/contents/Human Practices/human-practices.tsx @@ -55,6 +55,7 @@ import { HPIntegrated } from "./IHP"; import { HPFurtherEngagement } from "./Further Engagement/FurtherEngagement"; import { HPSupplement } from "./Further Engagement/SupMaterial"; import { useTabNavigation } from "../../utils/TabNavigation"; +import { HPAbstract } from "./HP-abstract"; export function HumanPractices() { useTabNavigation(); @@ -64,6 +65,7 @@ export function HumanPractices() { return ( <div className="col"> + <HPAbstract/> <HPOverview/> <HPIntroduction/> <HPIntegrated/> diff --git a/src/contents/description.tsx b/src/contents/description.tsx index 91df57769f9d8efd19c03b5baf86a7ff578932d1..d73df70093dcd249ba878d9ccdb94a9244faa217 100644 --- a/src/contents/description.tsx +++ b/src/contents/description.tsx @@ -524,6 +524,12 @@ let symptombuttonrowdata = [ function createSymptomSteckbrief(data: SymptomDatensatz){ let examplelist = []; for (let index = 0; index < data.subsections.length; index++) { + let absaetze = [] + for (let i = 0; i < data.subsections[index].text.length; i++) { + absaetze.push( + <p>{data.subsections[index].text[i]}</p> + ) + } examplelist.push( <div className="drug"> <H4 text={data.subsections[index].title}/> @@ -557,6 +563,13 @@ function createSymptomSteckbrief(data: SymptomDatensatz){ function createDrugSteckbrief(data: DrugDatensatz){ let examplelist = []; for (let index = 0; index < data.examples.length; index++) { + let absaetze = [] + for (let i = 0; i < data.examples[index].text.length; i++) { + absaetze.push( + <p>{data.examples[index].text[i]}</p> + ) + + } examplelist.push( <div className="drug"> <H4 text={data.examples[index].title}/>