Add sidebar

This commit is contained in:
2025-07-17 15:07:46 -07:00
parent ae1f5a9772
commit f1bd1af525
5 changed files with 137 additions and 3 deletions

21
src/componets/Sidebar.css Normal file
View File

@@ -0,0 +1,21 @@
@import 'tailwindcss';
.sidebar {
@apply w-60 h-screen bg-[#191919] flex flex-col;
}
.logo {
@apply text-2xl font-bold p-4;
}
.nav-links {
@apply flex flex-col p-4 space-y-1;
}
.link {
@apply text-white p-2 rounded-lg no-underline cursor-pointer transition-colors duration-[0.25s];
}
.link.active, .link:hover {
@apply bg-[#313131];
}