https://github.com/rajofearth/entro
https://github.com/rajofearth/entro
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rajofearth/entro
- Owner: rajofearth
- Created: 2024-12-25T12:56:06.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-02-14T09:30:47.000Z (3 months ago)
- Last Synced: 2025-02-14T10:30:20.961Z (3 months ago)
- Language: JavaScript
- Homepage: https://entro-sandy.vercel.app
- Size: 203 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
1. **Install Dependencies**
- **Axios** → For API requests
- **React Router DOM** → For navigation
- **Tailwind CSS** → For styling2. **Folder Structure Example**
```
src/
├── components/ (SearchBar, MovieCard)
├── pages/ (HomePage, MovieDetailsPage)
├── api/ (tmdb.js)
├── App.js
├── index.js
├── index.css
```3. **Core Features to Build**
- **Search Movies:** A search bar to query TMDb.
- **Display Details:** Show movie/tvshow posters, titles, and ratings.
- **Movie/Tvshow Details Page:** Detailed info on a selected movie/tvshow.
- **Public Library Setup:** Display curated movies.4. **Minimalist & Fun UI with Tailwind CSS**
- Clean, grid-based layout.
- Interactive hover effects on movie cards.
- Consistent color palette.
- With Little Animations, Hover effects
- Website should adapt with the movie User is Hovering or Viewing In details5. **Routing Example**
- `/` → Home (Search & Media Grid)
- `/movie/:id` → Movie Details
- `/tv/:id` → TvShow Details