We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a78f677 commit 74f8decCopy full SHA for 74f8dec
frontend/src/app/components/navbar/Navbar.tsx
@@ -1,12 +1,15 @@
1
import { IoPeopleCircleSharp } from "react-icons/io5";
2
import Button from "../button/Button";
3
+import Link from "next/link";
4
5
const Navbar = () => {
6
return (
7
<nav>
8
<div className="flex justify-between bg-neutral p-2 px-12 items-center">
- <div className="text-4xl text-white font-bold flex items-center">
9
- <IoPeopleCircleSharp className="text-base-100 text-5xl" />
+ <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>
13
PeerPrep
14
</div>
15
<Button
0 commit comments