├── .editorconfig ├── .gitignore ├── README.md ├── assets └── README.md ├── components ├── AppGame.vue ├── Logo.vue └── README.md ├── layouts ├── README.md └── default.vue ├── middleware └── README.md ├── nuxt.config.js ├── package.json ├── pages ├── README.md └── index.vue ├── plugins ├── README.md └── getGames.server.js ├── static ├── README.md ├── beam.jpg ├── blackjack.jpg ├── dizzy.jpg ├── favicon.ico ├── fortnite.jpg ├── gta.jpg ├── jumanji.jpg ├── mafia.jpg ├── minecraft.jpg └── sudo.jpg ├── store ├── README.md └── index.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/README.md -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/assets/README.md -------------------------------------------------------------------------------- /components/AppGame.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/components/AppGame.vue -------------------------------------------------------------------------------- /components/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/components/Logo.vue -------------------------------------------------------------------------------- /components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/components/README.md -------------------------------------------------------------------------------- /layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/layouts/README.md -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/middleware/README.md -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/package.json -------------------------------------------------------------------------------- /pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/pages/README.md -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/pages/index.vue -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/plugins/README.md -------------------------------------------------------------------------------- /plugins/getGames.server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/plugins/getGames.server.js -------------------------------------------------------------------------------- /static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/static/README.md -------------------------------------------------------------------------------- /static/beam.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/static/beam.jpg -------------------------------------------------------------------------------- /static/blackjack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/static/blackjack.jpg -------------------------------------------------------------------------------- /static/dizzy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/static/dizzy.jpg -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/fortnite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/static/fortnite.jpg -------------------------------------------------------------------------------- /static/gta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/static/gta.jpg -------------------------------------------------------------------------------- /static/jumanji.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/static/jumanji.jpg -------------------------------------------------------------------------------- /static/mafia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/static/mafia.jpg -------------------------------------------------------------------------------- /static/minecraft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/static/minecraft.jpg -------------------------------------------------------------------------------- /static/sudo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/static/sudo.jpg -------------------------------------------------------------------------------- /store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/store/README.md -------------------------------------------------------------------------------- /store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/store/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdras/favegame/HEAD/yarn.lock --------------------------------------------------------------------------------