From 2e96745b6bb885d8dff4b229ed31b37597820d30 Mon Sep 17 00:00:00 2001 From: Liliana Sanfilippo <liliana.sanfilippo@uni-bielefeld.de> Date: Sat, 21 Sep 2024 17:09:39 +0200 Subject: [PATCH] layozt parts --- src/contents/parts.tsx | 31 +++++++++++++++++++++---------- 1 file changed, 21 insertions(+), 10 deletions(-) diff --git a/src/contents/parts.tsx b/src/contents/parts.tsx index 9cbcd009..5fa348d6 100644 --- a/src/contents/parts.tsx +++ b/src/contents/parts.tsx @@ -1,17 +1,28 @@ +import { LoremMedium } from "../components/Loremipsum"; +import { Section, Subesction } from "../components/sections"; import { useNavigateTabs } from "../utils/navigation"; export function Parts() { useNavigateTabs(); return ( - <> - <div className="row"> - <div className="col"> - - </div> - </div> - <div className="row"> - - </div> - </> + <div className="col"> + <Section title="Introduction" id="Introduction"> + <Subesction title="Description" id="Introduction1"> + <LoremMedium/> + </Subesction> + <Subesction title="Characterization" id="Introduction2"> + <LoremMedium/> + </Subesction> + </Section> + <Section title="Process" id="Process"> + <LoremMedium/> + </Section> + <Section title="Experiments" id="Experiments"> + <LoremMedium/> + </Section> + <Section title="Parts Collection" id="Parts Collection"> + <LoremMedium/> + </Section> + </div> ); } \ No newline at end of file -- GitLab