diff --git a/packages/nextjs/app/builders/0x5ba397662e0Dc4569199De084C340Cd15b151716/page.tsx b/packages/nextjs/app/builders/0x5ba397662e0Dc4569199De084C340Cd15b151716/page.tsx new file mode 100644 index 0000000..1486556 --- /dev/null +++ b/packages/nextjs/app/builders/0x5ba397662e0Dc4569199De084C340Cd15b151716/page.tsx @@ -0,0 +1,53 @@ +"use client"; + +import Image from "next/image"; +import type { NextPage } from "next"; +import { Address } from "~~/components/scaffold-eth"; + +const Vick2592Profile: NextPage = () => { + const address = "0x5ba397662e0Dc4569199De084C340Cd15b151716"; + + return ( +
+
+
+ Vick2592 Avatar +
+

Victor

+
+
+ +
+

Web3 Developer | Building on Ethereum

+
+ + GitHub + + + Twitter + +
+
+ +
+
+

About Me

+

+ šŸ‘‹ Hi, Iā€™m @vick2592 šŸ‘€ Iā€™m interested in buidling a brighter web 3 future šŸŒ± My programming knowledge stack + include Python, React, C, and C++ šŸ’žļø Iā€™m looking to collaborate on DeFi and Web 3 related projects šŸ“« How + to reach me please contact via twitter šŸŒŽ Link Tree:{" "} + https://linktr.ee/vicbits +

+
+
+
+ ); +}; + +export default Vick2592Profile; diff --git a/packages/nextjs/next.config.js b/packages/nextjs/next.config.js index 7fc5b66..fe2ec93 100644 --- a/packages/nextjs/next.config.js +++ b/packages/nextjs/next.config.js @@ -18,6 +18,7 @@ const nextConfig = { remotePatterns: [ { hostname: "1.gravatar.com" }, { hostname: "gravatar.com" }, + { hostname: "avatars.githubusercontent.com" }, ], }, };