Skip to content

Commit 74f8dec

Browse files
committed
feat: add link to navbar, make font smaller
1 parent a78f677 commit 74f8dec

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

frontend/src/app/components/navbar/Navbar.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
import { IoPeopleCircleSharp } from "react-icons/io5";
22
import Button from "../button/Button";
3+
import Link from "next/link";
34

45
const Navbar = () => {
56
return (
67
<nav>
78
<div className="flex justify-between bg-neutral p-2 px-12 items-center">
8-
<div className="text-4xl text-white font-bold flex items-center">
9-
<IoPeopleCircleSharp className="text-base-100 text-5xl" />
9+
<div className="text-3xl text-white font-bold flex items-center">
10+
<Link href="/">
11+
<IoPeopleCircleSharp className="text-base-100 text-5xl cursor-pointer" />
12+
</Link>
1013
PeerPrep
1114
</div>
1215
<Button

0 commit comments

Comments
 (0)