18 lines
616 B
JavaScript
18 lines
616 B
JavaScript
import Head from "./Head"
|
|
import List from "./List"
|
|
|
|
function Sidebar({ user }) {
|
|
return (
|
|
<aside
|
|
className="h-fit lg:h-screen w-full lg:w-[39%]"
|
|
>
|
|
<div className="sticky pt-[10px] pb-[26px] bg-[#FFF] shadow-[0px_1px_24.8px_0px_rgba(204,_204,_204,_0.18)] rounded-[8px]
|
|
min-w-[288px] top-[calc(12px_+_58px_+_32px)] sm:top-[calc(21px_+_58px_+_45px)] md:top-[calc(30px_+_58px_+_58px)] lg:top-[calc(40px_+_58px_+_78px)]">
|
|
<Head user={user} />
|
|
<List user={user} />
|
|
</div>
|
|
</aside>
|
|
)
|
|
}
|
|
|
|
export default Sidebar |