-
Notifications
You must be signed in to change notification settings - Fork 12
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
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
39 changes: 39 additions & 0 deletions
39
packages/nextjs/pages/builders/0x3b529ac4F8dc0C40Fec0f1192029755275A0c3Cd.tsx
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,39 @@ | ||
import Image from "next/image"; | ||
|
||
const KavirajProfilePage = () => { | ||
const profileImage = "/kaviraj.jpg"; | ||
const bio = | ||
"Hi my name is Kaviraj (kaviraj.eth) I'm a computer science student who builds web applications and interested in web3 space :)"; | ||
const links = [ | ||
{ label: "Portfolio", url: "https://kaviraj-j.me" }, | ||
{ label: "GitHub", url: "https://github.com/kaviraj-j" }, | ||
{ label: "Twitter", url: "https://twitter.com/kaviraj_jk" }, | ||
]; | ||
|
||
return ( | ||
<div className="container mx-auto px-4 py-4"> | ||
<div className="flex items-center justify-center mb-8"> | ||
<Image src={profileImage} alt="Kaviraj Avatar" width={200} height={200} className="rounded-full shadow-md" /> | ||
</div> | ||
<div className="text-center mb-6"> | ||
<h2 className="text-3xl font-bold mb-2">{bio}</h2> | ||
</div> | ||
|
||
<div className="flex flex-col space-y-4"> | ||
{links.map(link => ( | ||
<a | ||
key={link.label} | ||
href={link.url} | ||
target="_blank" | ||
className="text-lg font-medium text-blue-500 hover:underline" | ||
rel="noreferrer" | ||
> | ||
{link.label} | ||
</a> | ||
))} | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default KavirajProfilePage; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.