diff --git a/packages/nextjs/app/builders/0x391b638EB7d21B122Be2Ed69eb81DA7E0F168177/page.tsx b/packages/nextjs/app/builders/0x391b638EB7d21B122Be2Ed69eb81DA7E0F168177/page.tsx new file mode 100644 index 00000000..92f9df2d --- /dev/null +++ b/packages/nextjs/app/builders/0x391b638EB7d21B122Be2Ed69eb81DA7E0F168177/page.tsx @@ -0,0 +1,84 @@ +import Image from "next/image"; +import type { NextPage } from "next"; +import { FaGithub, FaTwitter } from "react-icons/fa"; +import { Address } from "~~/components/scaffold-eth"; + +const walletAddress = "0x391b638EB7d21B122Be2Ed69eb81DA7E0F168177"; +const socialLinks = [ + { + href: "https://github.com/Ebukamoses", + label: "GitHub", + icon: , + }, + { + href: "https://twitter.com/bukan_moses", + label: "Twitter", + icon: , + }, +]; + +const EbukaMosesProfile: NextPage = () => { + return ( +
+
+
+ {/* Avatar */} +
+
+ my picture +
+
+ + {/* Name */} +
+

Ebuka Moses

+

+ Solidity | Express | Next | React +

+

+ I specialize in designing, building, and maintaining decentralized applications (dApps) and + blockchain-based systems that work with technologies like Ethereum, smart contracts (often using + Solidity), and distributed ledger protocols to create secure, transparent, and tamper-proof solutions for + industries. +

+
+ + {/* Address container */} +
+
+
+
+
+
+ {/* Social links */} +
+

Let's Connect

+
+ {socialLinks.map(({ href, label, icon }) => ( + + {icon} + {label} + + ))} +
+
+
+
+
+ ); +}; + +export default EbukaMosesProfile; diff --git a/packages/nextjs/public/EbukaDvAvatar2.png b/packages/nextjs/public/EbukaDvAvatar2.png new file mode 100644 index 00000000..e4da305a Binary files /dev/null and b/packages/nextjs/public/EbukaDvAvatar2.png differ