First commit

This commit is contained in:
Randa Firman Putra
2025-06-18 22:03:32 +07:00
parent 852121be46
commit e028039ee2
123 changed files with 17506 additions and 144 deletions

13
components/ui/Sidebar.tsx Normal file
View File

@@ -0,0 +1,13 @@
"use client";
import SidebarContent from './SidebarContent';
const Sidebar = () => {
return (
<div className="hidden md:block h-[calc(100vh-4rem)] w-[250px] fixed">
<SidebarContent />
</div>
);
};
export default Sidebar;