Thanks 🙇🏻 for visiting my Github Profile ❤️!
👨💻 Recently worked on
👷♀️ Compiled | Build time atomic CSS-in-JS. Baked and ready to serve.
Crowdsourcing Platform
. Redesigned the entire frontend in NextJS (SSG only) and created an interop so that it works with the legacy codebase.
🔬 My other works
Check out pinned repositories below 👇
👓 WebXR
🔻 Threejs
🎉 CSS-in-JS
🔧 Codemods
👷 Creating Babel plugins
⬡ GraphQL
🔥 Functional Programming
💬 Want to connect? 📫
import * as React from 'react';
import * as ReactDOM from 'react-dom';
import { Profile, Email } from './components';
ReactDOM.render(
<>
<Profile type="LinkedIn" url="https://www.linkedin.com/in/pgmanutd" name="Prashant Goel" />
<Email address="[email protected]" provider="Gmail" />
<Profile type="LeetCode" url="https://leetcode.com/pgmanutd" name="Prashant Goel" />
</>,
document.getElementById('want-to-connect')
);