Featured Post
4 min readOptimizing Next.js App Performance for Speed and SEO
Introduction Welcome to our article on optimizing your Next.js app's performance through the use of getServerSideProps and getStaticProps. As a big NextJS fan,...

Optimizing Next.js App Performance for Speed and SEO
4 min readIntroduction Welcome to our article on optimizing your Next.js app's performance through the use of getServerSideProps and getStaticProps. As a big NextJS fan,...
Removing sensitive data from Git history
1 min readHello folks, this will be a quick but really handy post. Let's say we are working on a side project that we didn't care the sensitive data like credentials of A...
Sending Emails with Ease: A Step-by-Step Guide to Using Nodemailer with TypeScript in Next.js
3 min readAbout Nodemailer Nodemailer is a popular library for sending emails in Node.js. It allows you to send emails using various transport methods, such as SMTP, AWS...
Animate everything with Framer Motion
2 min readWhat is Framer Motion Framer Motion is a powerful animation library for React. It provides a set of easy-to-use components that allow developers to add animatio...
Authentication with Firebase in NextJS, with SSR!
4 min readIntroduction In this post, we will learn how to set up user authentication in a Next.js application using Firebase. Firebase is a popular backend-as-a-service p...
The world of Headless CMS: Contenful, Strapi and Wordpress
2 min readIntroduction Headless CMS, also known as a "decoupled" or "content as a service" CMS, is a system that separates the content management and delivery systems. Th...
Sitemap for NextJS Application
1 min readThere is a really handy npm package to create sitemaps for your NextJS application, next-sitemap can be used for both main pages and also dynamically created pa...
NextAuth AWS Amplify Problem
2 min readTo solve the issue, add 'secret: process.env.NEXT_SECRET' to NextAuth Config with this way we are exposing the env. variables to use on AWS Amplify. export defa...
Update VSCode to latest on Ubuntu
1 min readTo update VSCode on Ubuntu, you can use the following steps: wget 'https://code.visualstudio.com/sha/download?build=stable&os=linux-deb-x64' -O /tmp/code_latest...
Add Google Analytics to NextJs Project
1 min readUsing <Script> components that NextJS provides, you can add Google Analytics to your project. So, you will be added to GA for your project. <Script s...