Skip to content

Commit

Permalink
added kaviraj.eth profile (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaviraj-j authored Jan 18, 2024
1 parent d708823 commit 6c320ad
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
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;
Binary file added packages/nextjs/public/kaviraj.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 6c320ad

Please sign in to comment.