diff --git a/src/contents/parts.tsx b/src/contents/parts.tsx
index 9cbcd009e85bc00767ec257e314bb83ed38b506a..5fa348d60de562200f291379fe584df1bb701ae7 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