PinnedHow to build a modal using Tailwind CSSHello, everyone. Creating and using modals is very important in many web applications. So today we will learn how to make a modal using Tailwind CSS and the Headless UI library. Set Up & Clean Up Create a new Next JS app with Tailwind CSS: # npm npx...Mar 1, 2022·5 min read·4.0K
Learn Next JS Server Actions with Books!Vercel released Next JS 13.4 on 3 days ago (at the time of writing this article), and with that release came two huge announcements: the stability of the app router and a new alpha feature called server actions. Server actions allow you to write serv...May 7, 2023·7 min read·588
A Primer on the Different ERC StandardsAs web3 applications scale in size and complexity, the chain that supports these apps must scale as well. The early years of Ethereum were mostly dominated by ERC-20 contracts, but the new rise in popularity of NFTs drew in a good amount of attention...Sep 17, 2022·4 min read·98
Looking Back at My Developer JourneyIt has been almost 2 years since I started my journey as a developer, and today, I just want to reflect on all the things I've done and learned over that period of time. Starting Out The first time I was exposed to computer science was when I was in ...Aug 21, 2022·4 min read·64
7 TypeScript Utility Types That Will Make Your Life EasierTypeScript has arguably been the greatest thing that I have ever come across as a developer because of the way it revolutionized my experience as a developer. I want to help make using TypeScript even better for you by showing you how to use 7 built ...Jun 30, 2022·5 min read·120
Minting your own NFTs using Next JS and ThirdwebWeb3 has been recently gaining a lot of attention, and many new developers are jumping into this new sector. NFTs and DAOs have also been getting lots of traction lately. Today, I will show you how to mint your own NFT using Next JS! I will be using...Mar 11, 2022·8 min read·444
Fetching APIs Using AxiosFetching an API is a must-know for web developers in 2022 and beyond. In this article, we will learn how to fetch an API and get its data using Axios, a popular library for fetching APIs. We will also use React for our demo app. Setup Create a new Re...Feb 24, 2022·4 min read·167