Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/ProfilesList.json
Original file line number Diff line number Diff line change
Expand Up @@ -387,4 +387,5 @@
"Savvythelegend.json",
"codernotme.json",
"saurabh9798.json"

]
11 changes: 5 additions & 6 deletions src/components/Sidebar/Sidebar.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useState, useEffect } from 'react';
import { FaLinkedin } from 'react-icons/fa';
import { faMoon, faSun } from '@fortawesome/free-solid-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { faCode, faMoon, faSun } from '@fortawesome/free-solid-svg-icons';
import React, { useEffect, useState } from 'react';
import { FaLinkedin } from 'react-icons/fa';
import { useNavigate } from 'react-router-dom';

function Sidebar() {
Expand Down Expand Up @@ -29,14 +29,13 @@ function Sidebar() {
return (
<div className="my-7 w-full border-r-2 border-borderSecondary px-7 font-spaceMono dark:border-borderColor md:h-[90vh] md:w-[23%] md:px-2 lg:px-7">
<div className="mb-2 flex h-12 items-center gap-2.5">
<div className="text-secondaryColor dark:text-white">
<FontAwesomeIcon icon={faCode} size="2xl" />
</div>
<img src="" alt="" />
<a href="https://www.devdisplay.org/">
<div
className="flex text-[2rem] font-bold
md:text-[1.05rem] lg:text-[1.25rem] min-[1200px]:text-[1.75rem] "
>
<img src="/devDisplayLOGO.png" alt="devdisplaylogo" width={40} height={40} />
<p className="text-secondaryColor dark:text-white">Dev</p>
<p className="text-textSecondary">Display</p>
</div>
Expand Down