diff --git a/packages/nextjs/app/builders/0x8Bb563DC969cC3b3e7275474c3847b44dBCB9441/components/Socials.tsx b/packages/nextjs/app/builders/0x8Bb563DC969cC3b3e7275474c3847b44dBCB9441/components/Socials.tsx new file mode 100644 index 0000000..900b736 --- /dev/null +++ b/packages/nextjs/app/builders/0x8Bb563DC969cC3b3e7275474c3847b44dBCB9441/components/Socials.tsx @@ -0,0 +1,31 @@ +import { FaLinkedin, FaXTwitter } from "react-icons/fa6"; +import { MdEmail } from "react-icons/md"; + +const contactLinks = [ + { + link: "mailto:michael.esenwa@yahoo.com", + image: , + }, + { + link: "https://twitter.com/kcmikee", + image: , + }, + { + link: "https://www.linkedin.com/in/kachukwu-michael-esenwa/", + image: , + }, +]; + +const Socials = () => { + return ( +
+ {contactLinks.map((_, i) => ( + + {_.image} + + ))} +
+ ); +}; + +export default Socials; diff --git a/packages/nextjs/app/builders/0x8Bb563DC969cC3b3e7275474c3847b44dBCB9441/page.tsx b/packages/nextjs/app/builders/0x8Bb563DC969cC3b3e7275474c3847b44dBCB9441/page.tsx new file mode 100644 index 0000000..2bd3ddf --- /dev/null +++ b/packages/nextjs/app/builders/0x8Bb563DC969cC3b3e7275474c3847b44dBCB9441/page.tsx @@ -0,0 +1,52 @@ +import Image from "next/image"; +import Socials from "./components/Socials"; +import { NextPage } from "next"; +import { Address } from "~~/components/scaffold-eth"; + +const MichaelEsenwa: NextPage = () => { + return ( +
+
+
+
+

+ Hi there, I am Kachukwu Michael Esenwa{" "} +

+
+ avatar +
+
+
+
+

+ I am a Front End Developer with a strong emphasis on creating high-performance web applications. With over + four years in the industry, my expertise lies in writing clean, efficient code and optimizing web pages + for speed and scalability. 💻 +

+
+ +
+
+ Address:{" "} +
+
+
+
+

📫 How to reach me:

+ +
+
+
+ avatar +
+
+
+ ); +}; + +export default MichaelEsenwa;