Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat builder profile #18

Merged
merged 4 commits into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
import Image from "next/image";
import type { NextPage } from "next";
import { FaDiscord, FaGithub, FaTelegram } from "react-icons/fa";
import { Address } from "~~/components/scaffold-eth";

const PeterProfile: NextPage = () => {
const socials = [
{
name: "Telegram",
icon: <FaTelegram size={24} />,
address: "https://telegram.me/pbkompasz",
},
{
name: "Discord",
icon: <FaDiscord size={24} />,
address: "https://discordapp.com/users/kbence9208",
},
{
name: "GitHub",
icon: <FaGithub size={24} />,
address: "https://github.com/pbkompasz",
},
];

return (
<div className="flex items-center justify-center h-full max-h-screen pt-16">
<div className="card shadow-lg rounded-lg p-6 max-w-md">
<Image
src={"/0x26BfbD8ED2B302ec2c2B6f063C4caF7abcB062e0-avatar.jpg"}
width={100}
height={100}
alt={"Profile"}
className="rounded-full self-center"
/>
<div className="px-6 py-4 flex flex-col items-center">
<h2 className="font-bold text-xl mb-2 text-center">Peter Kompasz</h2>
<div className="text-center">
<p>Fullstack Developer</p>
<p>
Hello! I&apos;m Peter.
<br />
My journey into <span className="font-bold">web3</span> began with studying computer science at
university, followed by a stint in web development.
<br />
Currently, I&apos;m transitioning into <span className="font-bold">web3</span> and{" "}
<span className="font-bold">smart contract development</span>, which I&apos;m really{" "}
<span className="font-bold">passionate</span> about
</p>
</div>
<div className="flex justify-center space-x-4">
{socials.map((social, id) => (
<a
key={id}
href={social.address}
target="_blank"
rel="noopener noreferrer"
className="btn btn-ghost btn-square"
>
{social.icon}
</a>
))}
</div>
<Address address="0x26BfbD8ED2B302ec2c2B6f063C4caF7abcB062e0" />
</div>
</div>
</div>
);
};

export default PeterProfile;
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.