From b0b19c714fbc2b3991eb7b40ec518f627141066e Mon Sep 17 00:00:00 2001
From: Liliana Sanfilippo <liliana.sanfilippo@uni-bielefeld.de>
Date: Fri, 20 Sep 2024 18:48:40 +0200
Subject: [PATCH] HP sidebar

---
 src/sidebars/hpS.tsx | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/src/sidebars/hpS.tsx b/src/sidebars/hpS.tsx
index 9c37197b..ef2d1dc9 100644
--- a/src/sidebars/hpS.tsx
+++ b/src/sidebars/hpS.tsx
@@ -1,13 +1,22 @@
+import { createSidebar } from "../utils/createSidebar";
 
 
 
 export function HpSidebar(){
-
-
+    let sidebar = createSidebar(tabs); 
     return(
         <div className="col-2 d-none d-lg-block">
-          
+           {sidebar}
         </div>
     )
 }
 
+const tabs = [
+    { tab: "Abstract" },
+    { tab: "Cystic Fibrosis", subtabs: ["Overview", "The CFTR Protein", "ΔF508", "Symptoms", "Diagnosis", "Treatment"]},
+    {tab: "Our Motivation"},
+    {tab: "Approach"},
+    {tab: "Delivery"},
+    {tab: "Our Vision"},
+    {tab: "References"}
+  ];
\ No newline at end of file
-- 
GitLab