Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
Logo is now link to '/'
Browse files Browse the repository at this point in the history
  • Loading branch information
matt01y committed Mar 18, 2024
1 parent 0aee258 commit 0c6b463
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions frontend/src/components/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
import {JSX} from "react";
import {RiAccountPinBoxLine} from "react-icons/ri";
import {Link} from "react-router-dom";

export function Header(): JSX.Element {
return (
<nav className={"main-nav is-flex is-flex-direction-row is-justify-content-space-between is-align-items-center"}>
<img src={"/logo.png"} alt={"image"}/>
<nav
className={"main-nav is-flex is-flex-direction-row is-justify-content-space-between is-align-items-center"}>
<Link to={"/"} className={"main-nav"}>
<img src={"/logo.png"} alt={"image"}/>
</Link>
<p className={"is-align-self-center"}><p>Home</p></p>
<button className={"button mx-2 is-transparent"}>
<div className={"icon-text"}>
Expand Down

0 comments on commit 0c6b463

Please sign in to comment.