How to make multi language project in next js in 10 minutes

Create a Next.js app To create a Next.js app, open your terminal, cd into the directory you’d like to create the app in, and run the following command: npx create-next-app@latest nextjs-blog install npm  i18n npm i i18n Configure next-i18next In your Next.js root directory, create a file called next-i18next.config.js. This will hold

Read More »

How To implement Google Sign-In using Firebase ReactJS / Next Js #2024

Sure, let’s break down the steps with some additional explanations: Firebase Project Setup: Firebase provides backend services for your web application, including authentication. Create a new project on the Firebase Console to get started. Firebase Authentication Setup: Within your Firebase project, navigate to the “Authentication” section and enable Google as

Read More »

How-to Use Alpha Color in MUI SX Style ?

In Material-UI (MUI), an “alpha color” refers to a color that includes an alpha channel to specify the level of opacity. The alpha channel is a component of color that represents transparency, with 0 being fully transparent and 1 being fully opaque. In MUI, you can apply alpha to colors

Read More »

How To Use MUI alpha gray colors step by step [2024]

  here is the grey colors defined in  palette.js file const GREY = { 0: ‘#FFFFFF’, 100: ‘#F9FAFB’, 200: ‘#F4F6F8’, 300: ‘#DFE3E8’, 400: ‘#C4CDD5’, 500: ‘#919EAB’, 600: ‘#637381’, 700: ‘#454F5B’, 800: ‘#212B36’, 900: ‘#161C24’, 1000: ‘#FBFBFB’, 500_8: alpha(‘#919EAB’, 0.08), 500_12: alpha(‘#919EAB’, 0.12), 500_16: alpha(‘#919EAB’, 0.16), 500_24: alpha(‘#919EAB’, 0.24), 500_32: alpha(‘#919EAB’,

Read More »

How To customize MUI Autocomplete Modal with Own Style? 🚀✨

Customizing MUI Autocomplete Modal Styling in Simple Steps If you’re using Material-UI (MUI) and want to give your Autocomplete component a personalized touch, you’re in the right place! Today, we’ll walk through a simple customization using your own styles. Step 1: Set Up Your Styles In your component file, start

Read More »

How to use raw RGB values in Tainwindcss?

Tailwind CSS primarily uses color names and shades rather than raw RGB values. However, you can convert an RGB color to a hexadecimal (hex) color code and then use that hex color in your Tailwind CSS classes.   To convert an RGB color to a hex color code, follow these

Read More »
No data found.