diff --git a/packages/nextjs/app/builders/0x1C945Cd472EFBE3b34798AA49457Bc7415636E5D/page.tsx b/packages/nextjs/app/builders/0x1C945Cd472EFBE3b34798AA49457Bc7415636E5D/page.tsx new file mode 100644 index 0000000..da1a588 --- /dev/null +++ b/packages/nextjs/app/builders/0x1C945Cd472EFBE3b34798AA49457Bc7415636E5D/page.tsx @@ -0,0 +1,72 @@ +import Image from "next/image"; +import { NextPage } from "next"; +import { Address } from "~~/components/scaffold-eth"; + +const obahProfile: NextPage = () => { + const address = "0x1C945Cd472EFBE3b34798AA49457Bc7415636E5D"; + + const socialLinks = [ + { name: "github", link: "https://github.com/obah" }, + { name: "x", link: "https://x.com/oba_ddev" }, + { name: "medium", link: "https://medium.com/@olusojiobah/" }, + ] as const; + + return ( +
+
+
+
+

Obaloluwa

+ +
+ +

Smart Contract Developer

+
+ +
+

About Me

+ +

+ Hi there, I am Obaloluwa, a software developer with a background in frontend development using{" "} + Javascript, React and TailwindCSS. +

+ +

+ Passionate about blockchain, blockchain security and zero knowledge. I am proficient in{" "} + Solidity and currently learning Rust and ZK while honing my smart contract auditing and + writing skills. +

+ +

Let us connect and build together 🙂

+
+ +
+ {socialLinks.map(item => ( + + {item.name} + + ))} +
+
+ +
+ obaloluwa +
+
+
+ ); +}; + +export default obahProfile;