Commit 29778cd3 by asranov0003

feat: navigate home header action icon

parent 9735b2dc
...@@ -24,6 +24,10 @@ ...@@ -24,6 +24,10 @@
} }
.header__actions__logo { .header__actions__logo {
text-decoration: none;
}
.header__actions__logo img {
width: 30px; width: 30px;
height: 30px; height: 30px;
border-radius: 2px; border-radius: 2px;
......
...@@ -6,7 +6,7 @@ import { ...@@ -6,7 +6,7 @@ import {
IoSettingsOutline, IoSettingsOutline,
} from "react-icons/io5"; } from "react-icons/io5";
import { GrMenu } from "react-icons/gr"; import { GrMenu } from "react-icons/gr";
import { NavLink } from "react-router-dom"; import { Link, NavLink } from "react-router-dom";
import { MdLogout } from "react-icons/md"; import { MdLogout } from "react-icons/md";
import { RiHome3Line } from "react-icons/ri"; import { RiHome3Line } from "react-icons/ri";
import { BsCreditCard } from "react-icons/bs"; import { BsCreditCard } from "react-icons/bs";
...@@ -76,11 +76,9 @@ const Header: React.FC = () => { ...@@ -76,11 +76,9 @@ const Header: React.FC = () => {
<> <>
<div className="header wrapper"> <div className="header wrapper">
<div className="header__actions"> <div className="header__actions">
<img <Link to={"/home"} className="header__actions__logo">
src={TheCybernanny} <img src={TheCybernanny} alt="TheCybernanny" />
alt="TheCybernanny" </Link>
className="header__actions__logo"
/>
<GrMenu <GrMenu
className="header__actions__icon" className="header__actions__icon"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment