From aa048b28b1fdb14fc0f93aaaca883462182fd978 Mon Sep 17 00:00:00 2001 From: obah Date: Fri, 10 Jan 2025 22:23:13 +0100 Subject: [PATCH 1/2] feat: implemented profile page --- .../page.tsx | 76 +++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 packages/nextjs/app/builders/0x1C945Cd472EFBE3b34798AA49457Bc7415636E5D/page.tsx diff --git a/packages/nextjs/app/builders/0x1C945Cd472EFBE3b34798AA49457Bc7415636E5D/page.tsx b/packages/nextjs/app/builders/0x1C945Cd472EFBE3b34798AA49457Bc7415636E5D/page.tsx new file mode 100644 index 0000000..1682833 --- /dev/null +++ b/packages/nextjs/app/builders/0x1C945Cd472EFBE3b34798AA49457Bc7415636E5D/page.tsx @@ -0,0 +1,76 @@ +import Image from "next/image"; +import { NextPage } from "next"; +import { Address } from "~~/components/scaffold-eth"; + +const obahProfile: NextPage = () => { + const address = "0x1C945Cd472EFBE3b34798AA49457Bc7415636E5D"; + + return ( +
+
+
+
+

Obaloluwa

+ +
+ +

Web3 Security Researcher

+
+ +
+

About Me

+ +

+ Hi there, I am Obaloluwa, a software developer passionate about blockchain and securing it. I have a + background in frontend development using Javascript, React and TailwindCSS. +

+

+ I am also proficient in Solidity and I am currently learning Rust and ZK while honing my smart contract + auditing and writing skills. Let us connect and build together 🙂 +

+
+ +
+ + GitHub + + + + X + + + Medium + +
+
+ +
+ obaloluwa +
+
+
+ ); +}; + +export default obahProfile; From 79b3904910ea1c08fa50d2bced1efd4d111909dc Mon Sep 17 00:00:00 2001 From: obah Date: Sat, 11 Jan 2025 20:43:03 +0100 Subject: [PATCH 2/2] chore: optimized ui and content --- .../page.tsx | 56 +++++++++---------- 1 file changed, 26 insertions(+), 30 deletions(-) diff --git a/packages/nextjs/app/builders/0x1C945Cd472EFBE3b34798AA49457Bc7415636E5D/page.tsx b/packages/nextjs/app/builders/0x1C945Cd472EFBE3b34798AA49457Bc7415636E5D/page.tsx index 1682833..da1a588 100644 --- a/packages/nextjs/app/builders/0x1C945Cd472EFBE3b34798AA49457Bc7415636E5D/page.tsx +++ b/packages/nextjs/app/builders/0x1C945Cd472EFBE3b34798AA49457Bc7415636E5D/page.tsx @@ -5,6 +5,12 @@ 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 (
@@ -14,48 +20,38 @@ const obahProfile: NextPage = () => {
-

Web3 Security Researcher

+

Smart Contract Developer

About Me

- Hi there, I am Obaloluwa, a software developer passionate about blockchain and securing it. I have a - background in frontend development using Javascript, React and TailwindCSS. + Hi there, I am Obaloluwa, a software developer with a background in frontend development using{" "} + Javascript, React and TailwindCSS.

+

- I am also proficient in Solidity and I am currently learning Rust and ZK while honing my smart contract - auditing and writing skills. Let us connect and build together 🙂 + 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 🙂

- - GitHub - - - - X - - - Medium - + {socialLinks.map(item => ( + + {item.name} + + ))}