Skip to content
Snippets Groups Projects
Commit 1df0bcdc authored by Tojo's avatar Tojo
Browse files

fix logo on header

parent 1c3ddc11
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,7 @@ interface Iheader {
const Header = (props: Iheader) => {
const { className = "", logo } = props;
const url ="#"
return (
<>
<div className="navbar bg-accent sticky top-0">
......@@ -39,7 +40,11 @@ const Header = (props: Iheader) => {
</div>
{/*----------------- LOGO --------------------------*/}
<div className="flex-shrink-0 flex items-center">
<Logo image={logoSig} />
<Logo image={logoSig}
to={url}
className="w-[150px]"
classImg='my-0'
/>
</div>
{/*-----------------END LOGO --------------------------*/}
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment