Skip to content

Commit 87b4964

Browse files
updated sidebar for ashboard
1 parent 216f7c4 commit 87b4964

File tree

4 files changed

+358
-218
lines changed

4 files changed

+358
-218
lines changed

docusaurus.config.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ const config: Config = {
9393
{
9494
type: "html",
9595
value: `<div class="grid grid-cols-3 gap-4 w-xl">
96-
<a class="border-r col-span-1" href="/courses/">Tutorials</a>
96+
<a class="border-r col-span-1" href="/courses/" style="color:black ; ">Tutorials</a>
9797
<div class="grid grid-cols-4 col-span-2">
9898
<a href="/docs/category/sql/" class="nav__icons"> <img src="/icons/sql.svg" title="SQL" alt="SQL" /> </a>
9999
<a href="/docs/category/python/" class="nav__icons"> <img src="/icons/python.svg" title="Python" alt="Python" /> </a>
@@ -109,7 +109,7 @@ const config: Config = {
109109
{
110110
type: "html",
111111
value: `<div class="grid grid-cols-3 gap-4">
112-
<a class="border-r col-span-1" href="/courses/"> Courses </a>
112+
<a class="border-r col-span-1" href="/courses/" style="color:black"> Courses </a>
113113
<div class="grid grid-cols-4 col-span-2">
114114
<a href="https://www.youtube.com/watch?v=GrTV59Y84S8&list=PLrLTYhoDFx-kiuFiGQqVpYYZ56pIhUW63&ab_channel=RecodeHive" class="nav__icons"> <img src="/icons/git.svg" alt="git" /> </a>
115115
<a href="https://www.youtube.com/watch?v=O1ahDsq8DU0&list=PLrLTYhoDFx-k62rLLajSB-jeqKwLkDrkF&ab_channel=RecodeHive" class="nav__icons"> <img src="/icons/postman.svg" alt="Postman" /> </a>
@@ -124,10 +124,10 @@ const config: Config = {
124124
{
125125
type: "html",
126126
value: `<div class="grid grid-cols-3 gap-4">
127-
<a class="border-r col-span-1" href="#" target="_self"> Interview Prep </a>
127+
<a class="border-r col-span-1" href="#" target="_self" style="color:black"> Interview Prep </a>
128128
<div class="grid grid-cols-1 col-span-2">
129-
<a href="/interview-prep/" target="_self" class="nav__icons"> 🧩Technical </a> <br />
130-
<a href="/interview-prep/" target="_self" class="nav__icons"> 💡Behavioral </a>
129+
<a href="/interview-prep/" target="_self" class="nav__icons"><span id="nav-technical" style="display:inline-flex;align-items:center;"></span> Technical</a> <br />
130+
<a href="/interview-prep/" target="_self" class="nav__icons"><span id="nav-behavioral" style="display:inline-flex;align-items:center;"></span> Behavioral</a>
131131
</div>
132132
</div>`,
133133
},

src/components/navbar/NavbarIconInjector.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ const iconMap = [
1717
{ id: "nav-community", name: "Community" },
1818
{ id: "nav-broadcast", name: "Broadcast" },
1919
{ id: "nav-podcast", name: "Podcast" },
20+
{ id: "nav-technical", name: "Technical" },
21+
{ id: "nav-behavioral", name: "Behavioral" },
2022
];
2123

2224
export default function NavbarIconInjector() {

0 commit comments

Comments
 (0)