Hi all. I am

Aimal Dev

> Frontend Engineer

// welcome to my digital playground

// you can also find me on Github

const githubLink = "https://github.com/aimal-dev"

importReactfrom 'react';
import { useGSAP } from '@gsap/react';

function Portfolio() {
// TODO: Add amazing projects
const skills = ['Next.js', 'GSAP', 'TypeScript'];
return (
<div className="awesome-portfolio">
{ skills.map(skill => <Skill key={skill} />) }
</div>
);
}