A Modern Fullstack Web Developer with a keen eye for design and a passion for building scalable, elegant, and seamless digital experiences. I specialize in bringing ideas to life, from crafting pixel-perfect, interactive frontends to engineering robust, high-performance backends.
- π Location: Based remotely, actively seeking freelance & full-time opportunities.
- π Expertise: Deeply proficient in React, Next.js, TypeScript, Node.js, and Tailwind CSS.
- π‘ Philosophy: A perpetual learner, always exploring new technologies to deliver innovative solutions.
A responsive web landing page and CMS built for AMIK SSR, demonstrating modern UI/UX principles and robust content management features.
A fullstack project management application to streamline team collaboration, task tracking, and project oversight with a clean interface.
My personal portfolio website, showcasing my projects, skills, and design philosophy through a modern, interactive user experience.
I'm enthusiastic about new opportunities. Feel free to reach out for freelance work, remote positions, or any collaborative ventures!
- Mastering advanced Next.js features and serverless architectures for highly scalable applications.
- Exploring GraphQL and microservices for building robust, distributed systems.
- Deepening expertise in building accessible and performant UIs with React and Tailwind CSS.
- Actively seeking impactful open-source projects to contribute to and grow within the developer community.
// A sleek and reusable Button component with Tailwind CSS
const Button = ({ children, className = '', ...props }) => (
<button
className={`px-6 py-3 rounded-lg font-semibold text-lg
bg-gradient-to-r from-cyan-400 to-blue-700 text-white
shadow-lg hover:shadow-xl hover:scale-105 transition-all duration-300 ease-in-out
${className}`}
{...props}
>
{children}
</button>
);