diff --git a/packages/nextjs/app/builders/0x021584e57b2219957784951639385027607266e6/page.tsx b/packages/nextjs/app/builders/0x021584e57b2219957784951639385027607266e6/page.tsx new file mode 100644 index 0000000..47c8819 --- /dev/null +++ b/packages/nextjs/app/builders/0x021584e57b2219957784951639385027607266e6/page.tsx @@ -0,0 +1,111 @@ +import { Inconsolata } from "next/font/google"; +import type { NextPage } from "next"; +import { Address } from "~~/components/scaffold-eth"; +import { getMetadata } from "~~/utils/scaffold-eth/getMetadata"; + +const inconsolata = Inconsolata({ + subsets: ["latin"], + weight: ["400", "700"], +}); + +export const metadata = getMetadata({ + title: "dantesito.eth ", + description: "Onchain freak πŸ‡¦πŸ‡·", +}); + +const socials = [ + { + name: "X", + url: "https://x.com/d4rm_", + }, + { + name: "Warpcast", + url: "https://warpcast.com/d4rm", + }, + { + name: "GitHub", + url: "https://github.com/d4rm5", + }, + { + name: "Telegram", + url: "https://t.me/d4rm5", + }, + { + name: "My blog", + url: "https://paragraph.xyz/@d4rm_", + }, +]; + +const projects = [ + { + name: "Proof of X", + url: "https://pox.me", + description: + "Open source web3 protocol focused on internet identity and privacy. I contributed to developing the web3 software and maintaining the community. Worked with Next.js, Tailwind, and front-end smart contracts integrations.", + }, + { + name: "Library digital credential", + url: "https://x.com/d4rm_/status/1722034025190023404", + description: + "Open source digital credential software created for my school’s library, built with Expo, React Native, Go, and MySQL. It was my final project for high school.", + }, + { + name: "El Burro Podcast", + url: "https://youtube.com/@realburropodcast", + description: "Podcast that I co-created, hosted, and co-produced in 2023.", + }, + { + name: "Technical high school catalog", + url: "https://github.com/catalogo-inet/catalogo-inet-front", + description: + "A map and catalog of all the technical secondary schools in Argentina, which won a contest organized by the INET (National Institute of Technological Education), where many schools from the country participated.", + }, +]; + +const DantesitoPage: NextPage = () => { + return ( +
+
+

Hi, Dantesito here! πŸ‘‹πŸ»

{" "} +

+ I'm Dante, aka dantesito or d4rm. 🀠
+ I'm a systems engineering student from Argentina and a freak about blockchain, Ethereum, cryptography, and + computers in general. πŸ§‘β€πŸ’» +

+

+ Currently, I'm learning about smart contracts, cryptography, cybersecurity, and related topics. In the + past, I learned web and mobile development with a focus on front-end technologies like TypeScript, React, + React Native, and Next.js. πŸͺ· +

+

Find me on:

+
+
+
+ +

Past projects / contributions ↓

+ +
+
+ ); +}; + +export default DantesitoPage;