├── .env.example ├── .eslintrc.json ├── .gitignore ├── README.md ├── deploy.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── 404.tsx ├── [user].tsx ├── _app.js ├── api │ ├── clear.ts │ ├── progress.ts │ ├── render.ts │ └── retry.ts ├── faq.tsx └── index.tsx ├── public ├── fav.png ├── flash.png ├── promo1.png ├── promo2.png ├── promo3.png └── vercel.svg ├── remotion ├── Contrib.tsx ├── Decoration.tsx ├── DecorativeLines.tsx ├── EndCard.tsx ├── EndCard2.tsx ├── Flashcard.tsx ├── Green.tsx ├── IDidALot.tsx ├── Issues.tsx ├── Lang.tsx ├── Main.tsx ├── ManyLanguages.tsx ├── TitleCard.tsx ├── TopWeekday.tsx ├── TotalContributions.tsx ├── Transition.tsx ├── TransitionDemo.tsx ├── Video.tsx ├── all.ts ├── font.ts ├── icons │ ├── C.tsx │ ├── Dart.tsx │ ├── Elixir.tsx │ ├── Erlang.tsx │ ├── Flutter.tsx │ ├── Go.tsx │ ├── Haskell.tsx │ ├── Javascript.tsx │ ├── Php.tsx │ ├── Python.tsx │ ├── Ruby.tsx │ ├── Rust.tsx │ ├── Scala.tsx │ ├── Swift.tsx │ ├── Typescript.tsx │ └── Zig.tsx ├── index.tsx ├── letters │ ├── github.tsx │ ├── one.tsx │ ├── two.tsx │ └── zero.tsx └── map-response-to-stats.ts ├── src ├── components │ ├── Download.tsx │ ├── Footer.tsx │ ├── Rerender.tsx │ ├── button.ts │ └── spinner.tsx ├── config.ts ├── db │ ├── cache.ts │ ├── mongo.ts │ └── renders.ts ├── get-account-count.ts ├── get-all.ts ├── get-random-aws-account.ts ├── get-render-or-make.ts ├── get-render-progress-with-finality.ts ├── get-stats-or-fetch.ts ├── palette.ts ├── regions.ts ├── set-env-for-key.ts └── use-window-size.ts ├── styles └── globals.css ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/README.md -------------------------------------------------------------------------------- /deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/deploy.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | reactStrictMode: false, 3 | }; 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/package.json -------------------------------------------------------------------------------- /pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/pages/404.tsx -------------------------------------------------------------------------------- /pages/[user].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/pages/[user].tsx -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/api/clear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/pages/api/clear.ts -------------------------------------------------------------------------------- /pages/api/progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/pages/api/progress.ts -------------------------------------------------------------------------------- /pages/api/render.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/pages/api/render.ts -------------------------------------------------------------------------------- /pages/api/retry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/pages/api/retry.ts -------------------------------------------------------------------------------- /pages/faq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/pages/faq.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /public/fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/public/fav.png -------------------------------------------------------------------------------- /public/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/public/flash.png -------------------------------------------------------------------------------- /public/promo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/public/promo1.png -------------------------------------------------------------------------------- /public/promo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/public/promo2.png -------------------------------------------------------------------------------- /public/promo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/public/promo3.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /remotion/Contrib.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/Contrib.tsx -------------------------------------------------------------------------------- /remotion/Decoration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/Decoration.tsx -------------------------------------------------------------------------------- /remotion/DecorativeLines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/DecorativeLines.tsx -------------------------------------------------------------------------------- /remotion/EndCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/EndCard.tsx -------------------------------------------------------------------------------- /remotion/EndCard2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/EndCard2.tsx -------------------------------------------------------------------------------- /remotion/Flashcard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/Flashcard.tsx -------------------------------------------------------------------------------- /remotion/Green.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/Green.tsx -------------------------------------------------------------------------------- /remotion/IDidALot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/IDidALot.tsx -------------------------------------------------------------------------------- /remotion/Issues.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/Issues.tsx -------------------------------------------------------------------------------- /remotion/Lang.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/Lang.tsx -------------------------------------------------------------------------------- /remotion/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/Main.tsx -------------------------------------------------------------------------------- /remotion/ManyLanguages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/ManyLanguages.tsx -------------------------------------------------------------------------------- /remotion/TitleCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/TitleCard.tsx -------------------------------------------------------------------------------- /remotion/TopWeekday.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/TopWeekday.tsx -------------------------------------------------------------------------------- /remotion/TotalContributions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/TotalContributions.tsx -------------------------------------------------------------------------------- /remotion/Transition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/Transition.tsx -------------------------------------------------------------------------------- /remotion/TransitionDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/TransitionDemo.tsx -------------------------------------------------------------------------------- /remotion/Video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/Video.tsx -------------------------------------------------------------------------------- /remotion/all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/all.ts -------------------------------------------------------------------------------- /remotion/font.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/font.ts -------------------------------------------------------------------------------- /remotion/icons/C.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/icons/C.tsx -------------------------------------------------------------------------------- /remotion/icons/Dart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/icons/Dart.tsx -------------------------------------------------------------------------------- /remotion/icons/Elixir.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/icons/Elixir.tsx -------------------------------------------------------------------------------- /remotion/icons/Erlang.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/icons/Erlang.tsx -------------------------------------------------------------------------------- /remotion/icons/Flutter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/icons/Flutter.tsx -------------------------------------------------------------------------------- /remotion/icons/Go.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/icons/Go.tsx -------------------------------------------------------------------------------- /remotion/icons/Haskell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/icons/Haskell.tsx -------------------------------------------------------------------------------- /remotion/icons/Javascript.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/icons/Javascript.tsx -------------------------------------------------------------------------------- /remotion/icons/Php.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/icons/Php.tsx -------------------------------------------------------------------------------- /remotion/icons/Python.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/icons/Python.tsx -------------------------------------------------------------------------------- /remotion/icons/Ruby.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/icons/Ruby.tsx -------------------------------------------------------------------------------- /remotion/icons/Rust.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/icons/Rust.tsx -------------------------------------------------------------------------------- /remotion/icons/Scala.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/icons/Scala.tsx -------------------------------------------------------------------------------- /remotion/icons/Swift.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/icons/Swift.tsx -------------------------------------------------------------------------------- /remotion/icons/Typescript.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/icons/Typescript.tsx -------------------------------------------------------------------------------- /remotion/icons/Zig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/icons/Zig.tsx -------------------------------------------------------------------------------- /remotion/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/index.tsx -------------------------------------------------------------------------------- /remotion/letters/github.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/letters/github.tsx -------------------------------------------------------------------------------- /remotion/letters/one.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/letters/one.tsx -------------------------------------------------------------------------------- /remotion/letters/two.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/letters/two.tsx -------------------------------------------------------------------------------- /remotion/letters/zero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/letters/zero.tsx -------------------------------------------------------------------------------- /remotion/map-response-to-stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/remotion/map-response-to-stats.ts -------------------------------------------------------------------------------- /src/components/Download.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/src/components/Download.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/Rerender.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/src/components/Rerender.tsx -------------------------------------------------------------------------------- /src/components/button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/src/components/button.ts -------------------------------------------------------------------------------- /src/components/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/src/components/spinner.tsx -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/db/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/src/db/cache.ts -------------------------------------------------------------------------------- /src/db/mongo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/src/db/mongo.ts -------------------------------------------------------------------------------- /src/db/renders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/src/db/renders.ts -------------------------------------------------------------------------------- /src/get-account-count.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/src/get-account-count.ts -------------------------------------------------------------------------------- /src/get-all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/src/get-all.ts -------------------------------------------------------------------------------- /src/get-random-aws-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/src/get-random-aws-account.ts -------------------------------------------------------------------------------- /src/get-render-or-make.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/src/get-render-or-make.ts -------------------------------------------------------------------------------- /src/get-render-progress-with-finality.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/src/get-render-progress-with-finality.ts -------------------------------------------------------------------------------- /src/get-stats-or-fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/src/get-stats-or-fetch.ts -------------------------------------------------------------------------------- /src/palette.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/src/palette.ts -------------------------------------------------------------------------------- /src/regions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/src/regions.ts -------------------------------------------------------------------------------- /src/set-env-for-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/src/set-env-for-key.ts -------------------------------------------------------------------------------- /src/use-window-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/src/use-window-size.ts -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/github-unwrapped-2021/HEAD/yarn.lock --------------------------------------------------------------------------------