-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
374 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
const contributors_a = [ | ||
'lucemans', | ||
'svemat01', | ||
'antony1060', | ||
'harryet', | ||
'jontes-tech', | ||
'robiot', | ||
'prokopschield', | ||
'm1guelpf', | ||
'anaarsonist', | ||
'hattorius', | ||
'thejoshuahendrix', | ||
'ItzDerock', | ||
'visenp', | ||
'imvlan', | ||
'loidnoir', | ||
'TG-Techie', | ||
'M-Desormeaux', | ||
'chalkedgoose', | ||
'0xEquinox', | ||
'KristofKekesi', | ||
'milkedcow', | ||
'joelimgu', | ||
'oguzeray', | ||
]; | ||
|
||
export const RecentContributors = () => { | ||
return ( | ||
<div className="border w-full p-4 rounded-md space-y-2"> | ||
<h2>Recent Contributors</h2> | ||
<ul className="flex gap-1 flex-wrap"> | ||
{contributors_a.map((contributor) => ( | ||
<li key={contributor}> | ||
<a | ||
href={`https://github.com/${contributor}`} | ||
target="_blank" | ||
> | ||
<img | ||
src={`https://github.com/${contributor}.png`} | ||
className="w-7 h-7 aspect-square rounded-full" | ||
alt={contributor} | ||
/> | ||
</a> | ||
</li> | ||
))} | ||
</ul> | ||
</div> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { FiExternalLink } from 'react-icons/fi'; | ||
|
||
export const ChatDiscord = () => { | ||
return ( | ||
<div className="w-full border rounded-md p-4 space-y-1"> | ||
<h2 className="font-bold"> | ||
Join us on <span className="text-[#8498FB]">Discord</span> | ||
</h2> | ||
<p> | ||
We chat everday about random stuff and build cool things, just | ||
don't look in #vc-text | ||
</p> | ||
<a | ||
href="https://discord.gg/v3x" | ||
target="_blank" | ||
className="flex text-center font-bold items-center gap-2 bg-[#8498FB] text-white px-4 ml-auto mt-2 py-2 rounded-md drop-shadow text-sm" | ||
> | ||
Open Discord | ||
<FiExternalLink /> | ||
</a> | ||
</div> | ||
); | ||
}; |
Oops, something went wrong.