From 3b8ceee576f2acf0441db1899c48140677372230 Mon Sep 17 00:00:00 2001 From: Dan Ko Date: Thu, 21 Sep 2023 16:44:07 -0400 Subject: [PATCH 1/5] replace with better solution to handle sidebar --- src/app/ideation/page.tsx | 40 ++++++++++++++---------------- src/app/layout.tsx | 10 +++++--- src/components/navbar/Navbar.tsx | 2 +- src/components/sidebar/Sidebar.tsx | 6 ++--- 4 files changed, 30 insertions(+), 28 deletions(-) diff --git a/src/app/ideation/page.tsx b/src/app/ideation/page.tsx index 4dc3fe39..2840478f 100644 --- a/src/app/ideation/page.tsx +++ b/src/app/ideation/page.tsx @@ -3,28 +3,26 @@ import { Banner } from "@/components"; function IdeationPage() { return ( -
-
- + + + {ideation.map((i) => ( + - - {ideation.map((i) => ( - - ))} -
+ ))}
); } diff --git a/src/app/layout.tsx b/src/app/layout.tsx index df6e3344..fc3d2073 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -33,11 +33,15 @@ export default function RootLayout({ storageKey="chingu-theme" disableTransitionOnChange > -
+
- -
{children}
+
+ +
+ {children} +
+
diff --git a/src/components/navbar/Navbar.tsx b/src/components/navbar/Navbar.tsx index 36510344..139a8556 100644 --- a/src/components/navbar/Navbar.tsx +++ b/src/components/navbar/Navbar.tsx @@ -5,7 +5,7 @@ const notificationCount = 4; export default function Navbar() { return ( -
-
+
From f49ac3e2b69946b15ceef96587121656f2e8fd4e Mon Sep 17 00:00:00 2001 From: Dan Ko Date: Fri, 22 Sep 2023 16:36:24 -0400 Subject: [PATCH 2/5] add border to sidebar --- src/components/sidebar/Sidebar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/sidebar/Sidebar.tsx b/src/components/sidebar/Sidebar.tsx index c1954451..4d2fe625 100644 --- a/src/components/sidebar/Sidebar.tsx +++ b/src/components/sidebar/Sidebar.tsx @@ -127,7 +127,7 @@ export default function Sidebar() {