Movies recomandation with AI.
- Install react app using create-react-app (CRA)
npx create-react-app netflix-gpt
- Install and init tailwind css
npm install -D tailwindcss
npx tailwindcss init
-
Configure tailwind css in your project
npx tailwindcss init
command will create a filetailwind.config.js
in your project's root directory. Opentailwind.config.js
and replace all content with below code.
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {},
},
plugins: [],
};
- Add the @tailwind directives for each of Tailwind’s layers to your ./src/index.css file.
@tailwind base;
@tailwind components;
@tailwind utilities;
- Now you created a react app with tailwind css successfully. Now run the below command on your terminal to start your local development server.
npm start
-
Home Page (is user !authorised)
- Signin/Signup Page
- SignInForm / SignUpForm
- Signin/Signup Page
-
Browse Page
- Navbar
- Showcase
- Trendings
- MoviesSuggestion
- MoviesList * N
-
NetflixGPT
- Search
- MoviesSuggestion
Live Demo : Click Here
<Happy coding />
If you have any questions, suggestions, or just want to connect, feel free to reach out.
Feel free to modify it to suit the tone and style of your project. The goal is to encourage participation, collaboration and learning.
Made with ❤️ and React.