<Skills/>
My TechStack and Skills
The languages, frameworks and infrastructure I reach for to take a product from idea to production.
<Frontend/>
8 tools<Tools/>
6 tools<Contact/>
Write me a message and I will get back to you.
TypeScript
⬡contact.ts
1// contact.ts — live preview23interface Message {4 from: "your_name";5 email: "your@email.com";6 subject: "your_subject";7 body: `8 your message here...9 `;10}1112async function send(13 payload: Message14): Promise<void> {15 await emailjs.send({16 serviceId: process.env.EMAIL_SVC,17 templateId: process.env.EMAIL_TPL,18 ...payload,19 });20}2122// ✦ Awaiting input23await send({24 from: "your_name",25 email: "your@email.com",26 subject: "your_subject",27 body: `...`,28});
Terminal
›$ Awaiting input...
⎇ maincontact.ts
● Live// new message