Getting Started with Next.js


Next.js is a powerful React framework that makes building fast, SEO-friendly, and scalable web applications easier. It comes with server-side rendering (SSR), static site generation (SSG), API routes, and more!
Letβs break it down step by step and get you started! π
πΉ Setting Up a Next.js App
To quickly create a Next.js project, run:
npx create-next-app@latest my-next-app
cd my-next-app
npm install
npm run dev
πΉ Open http://localhost:3000 in your browser β π Your Next.js app is live!
πΉ Project Structure
Hereβs what your new Next.js project will look like:
my-next-app/
βββ pages/ # Routes & pages
βββ public/ # Static assets (images, fonts, etc.)
βββ styles/ # Global styles (CSS)
βββ components/ # Reusable UI components
βββ package.json # Dependencies & scripts
πΉ Pages & Routing
π Next.js uses file-based routing β each file inside pages/
becomes a route.
pages/index.js
βhttp://localhost:3000/
pages/about.js
βhttp://localhost:3000/about
Create a new page:
// pages/about.js
export default function About() {
return <h1>About Page</h1>;
}
πΉ Using Tailwind CSS in Next.js
Tailwind CSS makes styling faster and more efficient. Letβs set it up:
1οΈβ£ Install Tailwind CSS & Dependencies
Run the following command:
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p
2οΈβ£ Configure tailwind.config.js
Open tailwind.config.js
and update the content
array:
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
};
3οΈβ£ Add Tailwind to Global CSS
Open styles/globals.css
and add:
@tailwind base;
@tailwind components;
@tailwind utilities;
4οΈβ£ Use Tailwind Classes in Components
Now, you can use Tailwind in your Next.js components:
export default function Home() {
return <h1 className="text-3xl font-bold text-center text-blue-600">Hello Next.js!</h1>;
}
π Thatβs it! Tailwind is now fully integrated into your Next.js app.
πΉ Fetching Data in Next.js
Next.js provides multiple ways to fetch data:
1οΈβ£ Server-Side Rendering (SSR)
Fetches data on every request.
export async function getServerSideProps() {
const res = await fetch('https://jsonplaceholder.typicode.com/posts');
const data = await res.json();
return { props: { data } };
}
2οΈβ£ Static Site Generation (SSG)
Fetches data at build time for better performance.
export async function getStaticProps() {
const res = await fetch('https://jsonplaceholder.typicode.com/posts');
const data = await res.json();
return { props: { data } };
}
πΉ API Routes in Next.js
π You can create your own backend with API routes in the pages/api/
folder.
Example: pages/api/hello.js
export default function handler(req, res) {
res.status(200).json({ message: "Hello from API!" });
}
Access it at http://localhost:3000/api/hello
.
πΉ Deployment
Once your app is ready, deploy it for free using Vercel (the creators of Next.js).
npm install -g vercel
vercel
Your app will be live on a custom URL in seconds! π
π Resources to Learn Next.js
πΉ Official Docs β nextjs.org
πΉ Free Course β Learn Next.js (YouTube)
πΉ UI Components β shadcn/ui
πΉ Deploy β vercel.com
π― Final Thoughts
Next.js is a game-changer for modern web development. It gives you the best of React with faster performance, SEO benefits, and built-in API routes.
π‘ Now, go build something awesome with Next.js & Tailwind CSS! π
Got questions? Drop them below! β¬οΈ Happy coding! π
Subscribe to my newsletter
Read articles from Deepak Modi directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by

Deepak Modi
Deepak Modi
Hey! I'm Deepak, a Full-Stack Developer passionate about web development, DSA, and building innovative projects. I share my learnings through blogs and tutorials.