Skip to content

Commit

Permalink
remove unused dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Superior212 committed Oct 18, 2024
1 parent 48fba26 commit 29ede1e
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
import Image from "next/image";
import { NextPage } from "next";
import { FaGithub, FaLinkedin } from "react-icons/fa";
import { FaXTwitter } from "react-icons/fa6";

const SuperiorProfile: NextPage = () => {
const socialLinks = [
{
href: "https://github.com/Superior212",
label: "Github",
icon: <FaGithub size={24} />,
},
{
href: "https://x.com/Samsonaderonmu",
label: "Twitter",
icon: <FaXTwitter size={24} />,
},
{
href: "https://www.linkedin.com/in/samsonaderonmu",
label: "LinkedIn",
icon: <FaLinkedin size={24} />,
},
];

return (
<div className="flex flex-col items-center justify-center min-h-screen bg-gradient-to-br from-base-200 to-base-300">
<div className="card w-96 bg-base-100 shadow-xl">
<figure className="px-10 pt-10">
<div className="avatar">
<div className="w-24 rounded-full ring ring-primary ring-offset-base-100 ring-offset-2">
<Image src="/superior.jpeg" width={96} height={96} alt="Builder Avatar" />
</div>
</div>
</figure>
<div className="card-body items-center text-center">
<h2 className="card-title">Samson Aderonmu</h2>
<p className="text-sm mt-2">
Passionate blockchain developer and Web3 enthusiast. Building the decentralized future, one smart contract
at a time.
</p>
<div className="card-actions justify-center mt-4">
{socialLinks.map(link => (
<a
key={link.label}
href={link.href}
target="_blank"
rel="noopener noreferrer"
className="btn btn-ghost btn-square"
>
{link.icon}
</a>
))}
</div>
</div>
</div>
</div>
);
};

export default SuperiorProfile;
1 change: 1 addition & 0 deletions packages/nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.0",
"react-icons": "^5.3.0",
"use-debounce": "^8.0.4",
"usehooks-ts": "^2.13.0",
"viem": "2.21.7",
Expand Down
Binary file added packages/nextjs/public/superior.jpeg
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 29ede1e

Please sign in to comment.