making the logo clickable

This commit is contained in:
Antoine M 2024-02-15 18:52:26 +01:00
parent cdef0c4e18
commit ee47b3a3b0

View File

@ -1,10 +1,11 @@
import React from "react";
import appLogo from "../../assets/img/app_logo.svg";
import appLogoBackground from "../../assets/img/app_logo_background3.png";
import { Link, useNavigate } from "react-router-dom";
export default function Logo() {
return (
<div className='logo'>
<Link to='/' className='logo'>
<img src={appLogo} alt='' />
</div>
</Link>
);
}