Monday, October 6, 2025
HomeLanguagesHow to add Text Reveals in Next.js ?

How to add Text Reveals in Next.js ?

In this article, we are going to learn how we can add Text reveals in NextJs. NextJS is a React-based framework. It has the power to Develop beautiful Web applications for different platforms like Windows, Linux, and mac. The linking of dynamic paths helps in rendering your NextJS components conditionally.

Approach: To add our Text reveals we are going to use the react-awesome-reveal package. The react-awesome-reveal package helps us to integrate different types of Text reveal. So first, we will install the react-awesome-reveal package and then we will add different texts on our homepage.

Create NextJS Application: You can create a new NextJs project using the below command:

npx create-next-app gfg

Install the required package: Now we will install the react-awesome-reveal package using the below command:

npm i react-awesome-reveal

Project Structure: It will look like this.

Adding the Text Reveals: After installing the react-awesome-reveal package we can easily add different text reveals on any page in our app. For this example, we are going to add text reveals to our homepage.

Add the below content in the index.js file:

Javascript




import { Fade,Bounce,Flip } from "react-awesome-reveal";
import React from 'react'
  
export default function Reveal() {
  return (
    <div>
      <Fade duration='10000'>
        <p>neveropen - Text</p>
      </Fade>
      <Flip>
        <p>Second Text</p>
      </Flip>
      <Bounce>
        <p>Third Text</p>
      </Bounce>
    </div>
  )
}


Explanation: In the above example first, we are importing different text reveal components like Fade, Bounce, and Flip from the installed package. Then we are using this component and set the text inside it. You can also set the duration for each animation using the duration property.

Steps to run the application: Run the below command in the terminal to run the app.

npm run dev

Output:

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32338 POSTS0 COMMENTS
Milvus
86 POSTS0 COMMENTS
Nango Kala
6707 POSTS0 COMMENTS
Nicole Veronica
11871 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11936 POSTS0 COMMENTS
Shaida Kate Naidoo
6825 POSTS0 COMMENTS
Ted Musemwa
7089 POSTS0 COMMENTS
Thapelo Manthata
6779 POSTS0 COMMENTS
Umr Jansen
6781 POSTS0 COMMENTS