diff --git a/packages/nextjs/app/builders/0xdfaA26eeE0d9Ed0dB940191014872bE40D2F3Ae5/page.tsx b/packages/nextjs/app/builders/0xdfaA26eeE0d9Ed0dB940191014872bE40D2F3Ae5/page.tsx new file mode 100644 index 0000000..e98bc9c --- /dev/null +++ b/packages/nextjs/app/builders/0xdfaA26eeE0d9Ed0dB940191014872bE40D2F3Ae5/page.tsx @@ -0,0 +1,107 @@ +import Image from "next/image"; +import { NextPage } from "next"; +import { FaEnvelope, FaGithub, FaLinkedinIn } from "react-icons/fa6"; +import { Address } from "~~/components/scaffold-eth"; + +const styles = { + bio: "text-base-content dark:text-white font-semibold leading-relaxed text-lg", + socialIcon: + "p-3 hover:bg-base-200 dark:hover:bg-base-300 rounded-xl transition-all duration-200 hover:scale-110 hover:shadow-md text-base-content dark:text-white", +}; + +const builderDetails = { + name: "Asante Ntiro", + location: "Tanzania", + address: "0xdfaA26eeE0d9Ed0dB940191014872bE40D2F3Ae5", + links: { + github: "asante-ntiro", + linkedin: "https://www.linkedin.com/in/asante-ntiro/", + email: "asante.ntiro@gmail.com", + avatar: "https://1.gravatar.com/userimage/258848136/ae25b744711c5e4d3de308ba0faa00f5?size=256", + }, + bio: ( + <> + Hello world. I'm Asante, a Tanzanian DevOps engineer and software developer with professional experience + since 2014. I've been exploring blockchain development, focusing on{" "} + smart contract programming + and secure infrastructure deployment. + I'm particularly excited about the potential of{" "} + DAOs and the use of + stable-coins to empower un-banked + individuals in Africa. You can check out my buidlGuidl profile + + + here + + + . + + ), +}; + +const AsanteNtiroBuilderPage: NextPage = () => { + return ( +
+
+
+ Asante's Profile Picture +
+
+

{builderDetails.name}

+
+
+
+
+ +
+ +

About Me

+

{builderDetails.bio}

+ +
+

Let's Connect

+
+ {builderDetails.links.github && ( + + + + )} + {builderDetails.links.linkedin && ( + + + + )} + {builderDetails.links.email && ( + + + + )} +
+
+
+ ); +}; + +export default AsanteNtiroBuilderPage; diff --git a/packages/nextjs/next.config.js b/packages/nextjs/next.config.js index 25b1e34..7fc5b66 100644 --- a/packages/nextjs/next.config.js +++ b/packages/nextjs/next.config.js @@ -15,7 +15,10 @@ const nextConfig = { return config; }, images: { - remotePatterns: [{ hostname: "gravatar.com" }], + remotePatterns: [ + { hostname: "1.gravatar.com" }, + { hostname: "gravatar.com" }, + ], }, };