Skip to content

Commit 635f426

Browse files
committed
Feat: Add link to contributors page in about us
1 parent 8770d41 commit 635f426

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

components/aboutUs.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import {useState, useEffect} from "react";
33
import {BallTriangle} from "react-loader-spinner";
44
import {SiBuymeacoffee} from "react-icons/si";
5+
import Link from "next/link";
56

67
const AboutUs = () => {
78
const [loading, setloading] = useState(true);
@@ -88,12 +89,11 @@ const AboutUs = () => {
8889
<div>
8990
<div className="flex flex-col justify-center items-center flex-wrap">
9091
<div className=" my-5 mx-3 p-6 flex flex-col justify-center items-center md:w-4/5 md:mx-0p-6 px-5 overflow-auto border-blue-700 border-2 rounded-lg">
91-
<p className=" mt-8 mb-8 text-xl text-white underline underline-offset-4">
92-
Our Contributers 🥂
93-
</p>
94-
<div
95-
id="contributors"
96-
className="overflow-auto whitespace-nowrap w-auto flex flex-wrap justify-evenly gap-1 md:gap-8"></div>
92+
<Link href="/contributors">
93+
<p className=" mt-8 mb-8 text-xl text-white underline underline-offset-4">
94+
Check out our cool contributors
95+
</p>
96+
</Link>
9797
</div>
9898
</div>
9999
</div>

0 commit comments

Comments
 (0)