Friday, October 10, 2025
HomeLanguagesHow to Add Tweets in Next.js ?

How to Add Tweets in Next.js ?

In this article, we are going to learn how we can add Tweets 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 tweets we are going to use the react-tweet-embed package. The react-tweet-embed package helps us to add tweets anywhere in our app. So first, we will install the react-tweet-embed package and then we will add a tweet 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-tweet-embed package using the below command:

npm i react-tweet-embed

Project Structure: It will look like this.

Adding the Tweets: We can easily add the tweets in our app after installing the react-tweet-embed package. For this example, we are going to add tweets to our homepage.

Add the below content in the index.js file:

Javascript




import TweetEmbed from 'react-tweet-embed'
import React from 'react'
  
export default function Tweets() {
  return (
    <div>
      <h3>neveropen - Tweet</h3>
      <TweetEmbed id='1456503289512710147' 
                  options={{theme: 'dark' }}/>
    </div>
  )
}


Explanation: In the above example first, we are importing the TweetEmbed component from the installed package. After that, we are adding the id and options parameter in our TweetEmbed component. You can find the tweet id in the tweet link.

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
32348 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6715 POSTS0 COMMENTS
Nicole Veronica
11878 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11941 POSTS0 COMMENTS
Shaida Kate Naidoo
6837 POSTS0 COMMENTS
Ted Musemwa
7097 POSTS0 COMMENTS
Thapelo Manthata
6792 POSTS0 COMMENTS
Umr Jansen
6791 POSTS0 COMMENTS