fix responsive all page & add modal doctor id & page dashboard aside

This commit is contained in:
Ehsan
2024-09-01 01:36:36 +03:30
parent b058066380
commit 680ef74034
64 changed files with 682 additions and 155 deletions
+16
View File
@@ -0,0 +1,16 @@
import Head from "./Head"
import List from "./List"
function Sidebar({ user }) {
return (
<aside
className="pt-[10px] pb-[26px] bg-[#FFF] shadow-[0px_1px_24.8px_0px_rgba(204,_204,_204,_0.18)] rounded-[8px]
min-w-[288px]"
>
<Head user={user} />
<List user={user} />
</aside>
)
}
export default Sidebar