Latest

  • Handling Nested Objects in a Multi-Page Form with Local Storage

    Handling Nested Objects in a Multi-Page Form with Local Storage When working with multi-page forms in TypeScript, it is common to encounter situations where you need to handle nested objects. This can be a bit tricky, especially when you want to persist the form data across different pages using local storage. In this blog post,…


  • How to generate an image using NextJS

    How to Generate an Image using Next.js Next.js is a popular framework for building server-side rendered React applications. It provides a powerful set of features, including the ability to generate images on the fly. In this blog post, we will explore how to generate an image using Next.js and discuss multiple solutions to achieve this.…


  • How to add link/href to html from global constants file

    How to Add Link/href to HTML from Global Constants File When working with TypeScript, it is common to have a global constants file that stores various values used throughout your application. One scenario you may encounter is the need to add a link or href to your HTML file using a value from your constants…