diff --git a/packages/nextjs/app/builders/0xc4Ad6218B68514161fFeC5dA54E1D30462C27CCD/page.tsx b/packages/nextjs/app/builders/0xc4Ad6218B68514161fFeC5dA54E1D30462C27CCD/page.tsx new file mode 100644 index 0000000..2bc49a9 --- /dev/null +++ b/packages/nextjs/app/builders/0xc4Ad6218B68514161fFeC5dA54E1D30462C27CCD/page.tsx @@ -0,0 +1,130 @@ +import { type NextPage } from "next"; +import { IconType } from "react-icons"; +import { FaEnvelope, FaGithub, FaLinkedin, FaTwitter } from "react-icons/fa"; + +// Interfaces moved outside the component +interface StyledIconProps extends React.HTMLAttributes { + icon: IconType; + size?: number; + color?: string; +} + +interface SocialLink { + href: string; + icon: IconType; + lightHoverColor: string; + darkHoverColor: string; + isEmail?: boolean; +} + +// Reusable styled icon component +const StyledIcon: React.FC = ({ icon: Icon, className, size, color, ...props }) => ( + + + +); + +// Social links data +const socialLinks: SocialLink[] = [ + { + href: "https://github.com/Vedant-05", + icon: FaGithub, + lightHoverColor: "hover:text-gray-900", + darkHoverColor: "dark:hover:text-gray-200", + }, + { + href: "https://x.com/DecodingDegen", + icon: FaTwitter, + lightHoverColor: "hover:text-blue-400", + darkHoverColor: "dark:hover:text-blue-300", + }, + { + href: "https://www.linkedin.com/in/vedant-joshi-962a23191", + icon: FaLinkedin, + lightHoverColor: "hover:text-blue-600", + darkHoverColor: "dark:hover:text-blue-400", + }, + { + href: "mailto:itsmevedantjoshi@gmail.com", + icon: FaEnvelope, + lightHoverColor: "hover:text-red-500", + darkHoverColor: "dark:hover:text-red-400", + isEmail: true, + }, +]; + +const DeveloperProfilePage: NextPage = () => { + return ( +
+
+ {/* Hero Section */} +
+
+ Profile +
+ +

+ Hi, I'm Vedant! +

+
+

+ Finding my way back to Web3. Rooted in competitive programming (C++), growing in blockchain (Solidity). + Learning, building, and sharing the journey 🛠️ +

+
+ + {/* Main Content */} +
+ {/* About Section */} +
+

About Me

+
+

+ A Full Stack Engineer with a deep fascination for DeFi and blockchain technology. +

+

+ Having contributed to notable DeFi protocols like{" "} + Instadapp and + Router Protocol, I've + gained hands-on experience in building decentralized solutions. +

+

+ While my journey includes significant web2 development, my passion lies in web3 security and community + engagement. +

+

+ Currently focused on bridging traditional finance with DeFi innovations, while pursuing my path toward + becoming a smart contract auditor and developer advocate. I believe in making blockchain technology more + accessible and secure for everyone. +

+
+
+ + {/* Connect Section */} +
+

Let's Connect

+
+ {socialLinks.map(({ href, icon: Icon, lightHoverColor, darkHoverColor }, index) => ( + + + + ))} +
+
+
+
+
+ ); +}; + +export default DeveloperProfilePage;