feat: major rewrite

the application is now rewritten in next.js. this commit also adds the ability to see trailers, did you know, more like this, etc. on title page.

BREAKING CHANGE: the whole application is rewritten from scratch.
This commit is contained in:
zyachel
2022-09-11 19:37:24 +05:30
committed by zyachel
parent 620ddf348a
commit 9891204f5a
129 changed files with 6314 additions and 4671 deletions

49
.gitignore vendored
View File

@ -1,21 +1,34 @@
#big stuff
node_modules/
.cache/
.parcel-cache/
# dependencies
/node_modules
/.pnp
.pnp.js
# env variables
*.env
# testing
/coverage
# CSS files
public/css/*.css
public/css/*.css.map
# next.js
/.next/
/out/
#misc stuff
fetchers/*
!fetchers/movie.js
controllers/movieControllers.js
routes/movieRoutes.js
views/pug/homepage.pug
views/pug/movies.pug
views/pug/_card.pug
utils/constants.js
# production
/build
# misc
.DS_Store
*.pem
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
# local env files
.env*.local
# typescript
*.tsbuildinfo
next-env.d.ts
#just dev stuff
dev/*