mirror of
https://github.com/pds-nest/nest.git
synced 2025-03-24 17:27:16 +00:00
🔧 Add logo placeholder to the sidebar
This commit is contained in:
parent
357ade1890
commit
6017285a18
2 changed files with 4 additions and 0 deletions
code/frontend/src/components
|
@ -6,6 +6,8 @@ import classNames from "classnames"
|
|||
export default function Sidebar({ children, className, ...props }) {
|
||||
return (
|
||||
<div className={classNames(Style.Sidebar, className)} {...props}>
|
||||
{/* TODO: Aggiungere il logo qui! */}
|
||||
<img src={""} width={230} height={170}/>
|
||||
{children}
|
||||
</div>
|
||||
)
|
||||
|
|
|
@ -6,4 +6,6 @@
|
|||
|
||||
background-color: var(--bg-light);
|
||||
border-radius: 25px;
|
||||
|
||||
padding: 10px;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue