Skip to content

Latest commit

 

History

History
124 lines (82 loc) · 3.51 KB

README.md

File metadata and controls

124 lines (82 loc) · 3.51 KB
logo

NETFLIX 2.0 with TailwindCss!


📔 Table of Contents

🌟 About the Project

📸 Screenshots

image image image image image image image

built with love

image

forthebadge forthebadge forthebadge


Install dependencies

🧪 Install Tailwind CSS

Install Tailwind CSS

Install tailwindcss and its peer dependencies via npm, and then run the init command to generate both tailwind.config.js and postcss.config.js.

npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p

Configure your template paths

Add the paths to all of your template files in your tailwind.config.js file.

module.exports = {
  content: [
    "./pages/**/*.{js,ts,jsx,tsx}",
    "./components/**/*.{js,ts,jsx,tsx}",
  ],
  theme: {
    extend: {},
  },
  plugins: [],
};

Add the Tailwind directives to your CSS

Add the @tailwind directives for each of Tailwind’s layers to your ./styles/globals.css file.

@tailwind base;
@tailwind components;
@tailwind utilities;

🚩 Deployment

To deploy this project run

Deploy on Vercel

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

🤝 Contact

Your Name - @twitter_handle - prathameshj792@gmail.com

Project Link: https://github.com/pratham0709/NETFLIX-Clone.git



Don't forget to leave a star ⭐️