diff --git a/packages/nextjs/app/builders/0x5defa248834d4b6112a0Ad3854AA22913e01BD83/components/Socials.tsx b/packages/nextjs/app/builders/0x5defa248834d4b6112a0Ad3854AA22913e01BD83/components/Socials.tsx new file mode 100644 index 0000000..f79a436 --- /dev/null +++ b/packages/nextjs/app/builders/0x5defa248834d4b6112a0Ad3854AA22913e01BD83/components/Socials.tsx @@ -0,0 +1,40 @@ +import Link from "next/link"; +import { FaGithub, FaInstagram, FaLinkedin } from "react-icons/fa"; +import { FaXTwitter } from "react-icons/fa6"; + +interface SocialLink { + href: string; + icon: JSX.Element; +} + +const Socials: React.FC = () => { + const links: SocialLink[] = [ + { href: "https://github.com/Michael-Nwachukwu", icon: }, + { + href: "https://www.instagram.com/bldn.work/", + icon: , + }, + { href: "https://twitter.com/0xchef__", icon: }, + { + href: "https://www.linkedin.com/in/nwachukwu-michael-b6b8261a2/", + icon: , + }, + ]; + return ( + <> + {links.map((link, index) => ( + + {link.icon} + + ))} + + ); +}; + +export default Socials; diff --git a/packages/nextjs/app/builders/0x5defa248834d4b6112a0Ad3854AA22913e01BD83/page.tsx b/packages/nextjs/app/builders/0x5defa248834d4b6112a0Ad3854AA22913e01BD83/page.tsx new file mode 100644 index 0000000..2efa866 --- /dev/null +++ b/packages/nextjs/app/builders/0x5defa248834d4b6112a0Ad3854AA22913e01BD83/page.tsx @@ -0,0 +1,32 @@ +import Image from "next/image"; +import Socials from "./components/Socials"; +import type { NextPage } from "next"; + +const MichaelNwachukwuProfile: NextPage = () => { + return ( +
+
+ 0x5defa248834d4b6112a0Ad3854AA22913e01BD83 +

Michael Nwachukwu

+

Fullstack Engineer | Smart contract Developer | Technical Writer

+

+ With a background in Architecture, I’ve transitioned into developing web applications while also working as a + technical writer. Currently, I’m deepening my expertise in web3 through the Speed Run Ethereum BuidlGuidl + program, collaborating with talented developers to build innovative projects and continuously learning + throughout the process. +

+
+ +
+
+
+ ); +}; + +export default MichaelNwachukwuProfile; diff --git a/packages/nextjs/public/michaelNwachukwu-images/michael-nwachukwu.png b/packages/nextjs/public/michaelNwachukwu-images/michael-nwachukwu.png new file mode 100644 index 0000000..58ca5dd Binary files /dev/null and b/packages/nextjs/public/michaelNwachukwu-images/michael-nwachukwu.png differ