├── .babelrc ├── .editorconfig ├── .env.development ├── .env.test ├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ ├── ci.yml │ └── e2e.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .jest ├── match-media-mock.js ├── next-image.mock.js ├── server.mock.ts ├── session.mock.ts └── setup.ts ├── .prettierignore ├── .prettierrc ├── .storybook ├── main.js └── preview.js ├── .vscode └── settings.json ├── README.md ├── convertToNonNull.js ├── cypress.json ├── cypress ├── .eslintrc.json ├── docker-compose.yml ├── e2e │ ├── cart.ts │ ├── checkout.ts │ ├── explore.ts │ ├── forgot-password.ts │ ├── game.ts │ ├── home.ts │ ├── reset-password.ts │ ├── user.ts │ └── wishlist.ts ├── fixtures │ └── example.json ├── plugins │ └── index.js ├── support │ ├── commands.ts │ ├── generate.ts │ ├── index.d.ts │ └── index.ts └── tsconfig.json ├── flow.drawio ├── generators ├── plopfile.js └── templates │ ├── Component.tsx.hbs │ ├── stories.tsx.hbs │ ├── styles.ts.hbs │ └── test.tsx.hbs ├── jest.config.js ├── next-env.d.ts ├── next-seo.config.js ├── next.config.js ├── package.json ├── public ├── fonts │ ├── poppins-v12-latin-300.woff2 │ ├── poppins-v12-latin-600.woff2 │ └── poppins-v12-latin-regular.woff2 ├── img │ ├── auth-bg.jpg │ ├── cards │ │ ├── mastercard.png │ │ └── visa.png │ ├── dots.svg │ ├── empty.svg │ ├── games │ │ ├── cyberpunk-1.jpg │ │ ├── cyberpunk-2.jpg │ │ ├── cyberpunk-3.jpg │ │ ├── cyberpunk-4.jpg │ │ ├── cyberpunk-5.jpg │ │ └── cyberpunk-6.jpg │ ├── hero-illustration.svg │ ├── icon-192.png │ ├── icon-512.png │ ├── logo-gh.svg │ ├── logo.svg │ ├── red-dead-float.png │ └── red-dead-img.jpg └── manifest.json ├── schema.gql ├── src ├── components │ ├── Analytics │ │ └── index.tsx │ ├── Banner │ │ ├── __snapshots__ │ │ │ └── test.tsx.snap │ │ ├── index.tsx │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── BannerSlider │ │ ├── index.tsx │ │ ├── mock.ts │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── Button │ │ ├── __snapshots__ │ │ │ └── test.tsx.snap │ │ ├── index.tsx │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── CartButton │ │ ├── index.tsx │ │ └── test.tsx │ ├── CartDropdown │ │ ├── index.tsx │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── CartIcon │ │ ├── index.tsx │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── CartList │ │ ├── __snapshots__ │ │ │ └── test.tsx.snap │ │ ├── index.tsx │ │ ├── mock.ts │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── Checkbox │ │ ├── __snapshots__ │ │ │ └── test.tsx.snap │ │ ├── index.tsx │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── Container │ │ ├── index.tsx │ │ └── test.tsx │ ├── Divider │ │ ├── index.tsx │ │ └── test.tsx │ ├── Dropdown │ │ ├── index.tsx │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── Empty │ │ ├── __snapshots__ │ │ │ └── test.tsx.snap │ │ ├── index.tsx │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── ExploreSidebar │ │ ├── index.tsx │ │ ├── mock.ts │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── Footer │ │ ├── __snapshots__ │ │ │ └── test.tsx.snap │ │ ├── index.tsx │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── Form │ │ ├── index.tsx │ │ └── test.tsx │ ├── FormForgotPassword │ │ ├── index.tsx │ │ └── test.tsx │ ├── FormProfile │ │ ├── index.tsx │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── FormResetPassword │ │ ├── index.tsx │ │ └── test.tsx │ ├── FormSignIn │ │ ├── __snapshots__ │ │ │ └── test.tsx.snap │ │ ├── index.tsx │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── FormSignUp │ │ ├── __snapshots__ │ │ │ └── test.tsx.snap │ │ ├── index.tsx │ │ ├── stories.tsx │ │ └── test.tsx │ ├── Gallery │ │ ├── index.tsx │ │ ├── mock.ts │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── GameCard │ │ ├── __snapshots__ │ │ │ └── test.tsx.snap │ │ ├── index.tsx │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── GameCardSlider │ │ ├── index.tsx │ │ ├── mock.ts │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── GameDetails │ │ ├── index.tsx │ │ ├── mock.ts │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── GameInfo │ │ ├── __snapshots__ │ │ │ └── test.tsx.snap │ │ ├── index.tsx │ │ ├── mock.ts │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── GameItem │ │ ├── index.tsx │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── Grid │ │ ├── index.tsx │ │ └── test.tsx │ ├── Heading │ │ ├── index.tsx │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── Highlight │ │ ├── __snapshots__ │ │ │ └── test.tsx.snap │ │ ├── index.tsx │ │ ├── mock.ts │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── Loader │ │ ├── index.tsx │ │ └── test.tsx │ ├── Logo │ │ ├── index.tsx │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── MediaMatch │ │ ├── index.tsx │ │ ├── stories.tsx │ │ └── test.tsx │ ├── Menu │ │ ├── index.tsx │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── OrdersList │ │ ├── index.tsx │ │ ├── mock.ts │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── PaymentForm │ │ ├── index.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── ProfileMenu │ │ ├── __snapshots__ │ │ │ └── test.tsx.snap │ │ ├── index.tsx │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── Radio │ │ ├── __snapshots__ │ │ │ └── test.tsx.snap │ │ ├── index.tsx │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── Ribbon │ │ ├── __snapshots__ │ │ │ └── test.tsx.snap │ │ ├── index.tsx │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── Showcase │ │ ├── index.tsx │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── Slider │ │ ├── __snapshots__ │ │ │ └── test.tsx.snap │ │ ├── index.tsx │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── Spinner │ │ ├── index.tsx │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── StickyNote │ │ └── index.tsx │ ├── TextContent │ │ ├── index.tsx │ │ ├── mock.ts │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── TextField │ │ ├── __snapshots__ │ │ │ └── test.tsx.snap │ │ ├── index.tsx │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── UserDropdown │ │ ├── index.tsx │ │ ├── stories.tsx │ │ ├── styles.ts │ │ └── test.tsx │ └── WishlistButton │ │ ├── index.tsx │ │ └── test.tsx ├── graphql │ ├── fragments │ │ ├── banner.ts │ │ ├── game.ts │ │ └── highlight.ts │ ├── generated │ │ ├── BannerFragment.ts │ │ ├── GameFragment.ts │ │ ├── HighlightFragment.ts │ │ ├── MutationCreateWishlist.ts │ │ ├── MutationRegister.ts │ │ ├── MutationUpdateWishlist.ts │ │ ├── QueryGameBySlug.ts │ │ ├── QueryGames.ts │ │ ├── QueryHome.ts │ │ ├── QueryOrders.ts │ │ ├── QueryProfileMe.ts │ │ ├── QueryRecommended.ts │ │ ├── QueryUpcoming.ts │ │ ├── QueryWishlist.ts │ │ └── globalTypes.ts │ ├── mutations │ │ ├── register.ts │ │ └── wishlist.ts │ └── queries │ │ ├── games.ts │ │ ├── home.ts │ │ ├── orders.ts │ │ ├── profile.ts │ │ ├── recommended.ts │ │ ├── upcoming.ts │ │ └── wishlist.ts ├── hooks │ ├── use-cart │ │ ├── index.tsx │ │ ├── mock.ts │ │ └── test.tsx │ └── use-wishlist │ │ ├── index.tsx │ │ ├── mock.ts │ │ └── test.tsx ├── pages │ ├── 404.tsx │ ├── _app.tsx │ ├── _document.tsx │ ├── api │ │ └── auth │ │ │ └── [...nextauth].ts │ ├── cart.tsx │ ├── forgot-password.tsx │ ├── game │ │ └── [slug].tsx │ ├── games.tsx │ ├── index.tsx │ ├── profile │ │ ├── me.tsx │ │ └── orders.tsx │ ├── reset-password.tsx │ ├── sign-in.tsx │ ├── sign-up.tsx │ ├── success.tsx │ └── wishlist.tsx ├── styles │ ├── global.ts │ └── theme.ts ├── templates │ ├── Auth │ │ ├── index.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── Base │ │ ├── index.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── Cart │ │ ├── index.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── Game │ │ ├── index.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── Games │ │ ├── index.tsx │ │ ├── mocks.ts │ │ ├── styles.ts │ │ └── test.tsx │ ├── Home │ │ ├── index.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── Profile │ │ ├── index.tsx │ │ ├── styles.ts │ │ └── test.tsx │ ├── Success │ │ ├── index.tsx │ │ └── styles.ts │ └── Wishlist │ │ ├── index.tsx │ │ ├── styles.ts │ │ └── test.tsx ├── types │ ├── jest-styled-components.d.ts │ └── styled-components.d.ts └── utils │ ├── apollo.ts │ ├── apolloCache.ts │ ├── filter │ ├── fields.ts │ ├── index.ts │ └── test.ts │ ├── format-price.ts │ ├── getImageUrl.ts │ ├── localStorage │ ├── index.ts │ └── test.ts │ ├── mappers │ ├── index.ts │ └── test.ts │ ├── mockServer │ ├── handlers.ts │ └── server.ts │ ├── protected-routes.ts │ ├── stripe │ └── methods.tsx │ ├── test-utils.tsx │ └── validations │ ├── index.ts │ └── test.ts ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/.env.development -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/.env.test -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | !.storybook 2 | !.jest 3 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/.github/workflows/e2e.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.jest/match-media-mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/.jest/match-media-mock.js -------------------------------------------------------------------------------- /.jest/next-image.mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/.jest/next-image.mock.js -------------------------------------------------------------------------------- /.jest/server.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/.jest/server.mock.ts -------------------------------------------------------------------------------- /.jest/session.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/.jest/session.mock.ts -------------------------------------------------------------------------------- /.jest/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/.jest/setup.ts -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | !.storybook 2 | !.jest 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/.storybook/preview.js -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/README.md -------------------------------------------------------------------------------- /convertToNonNull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/convertToNonNull.js -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/cypress/.eslintrc.json -------------------------------------------------------------------------------- /cypress/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/cypress/docker-compose.yml -------------------------------------------------------------------------------- /cypress/e2e/cart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/cypress/e2e/cart.ts -------------------------------------------------------------------------------- /cypress/e2e/checkout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/cypress/e2e/checkout.ts -------------------------------------------------------------------------------- /cypress/e2e/explore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/cypress/e2e/explore.ts -------------------------------------------------------------------------------- /cypress/e2e/forgot-password.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/cypress/e2e/forgot-password.ts -------------------------------------------------------------------------------- /cypress/e2e/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/cypress/e2e/game.ts -------------------------------------------------------------------------------- /cypress/e2e/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/cypress/e2e/home.ts -------------------------------------------------------------------------------- /cypress/e2e/reset-password.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/cypress/e2e/reset-password.ts -------------------------------------------------------------------------------- /cypress/e2e/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/cypress/e2e/user.ts -------------------------------------------------------------------------------- /cypress/e2e/wishlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/cypress/e2e/wishlist.ts -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/cypress/support/commands.ts -------------------------------------------------------------------------------- /cypress/support/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/cypress/support/generate.ts -------------------------------------------------------------------------------- /cypress/support/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/cypress/support/index.d.ts -------------------------------------------------------------------------------- /cypress/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/cypress/support/index.ts -------------------------------------------------------------------------------- /cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/cypress/tsconfig.json -------------------------------------------------------------------------------- /flow.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/flow.drawio -------------------------------------------------------------------------------- /generators/plopfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/generators/plopfile.js -------------------------------------------------------------------------------- /generators/templates/Component.tsx.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/generators/templates/Component.tsx.hbs -------------------------------------------------------------------------------- /generators/templates/stories.tsx.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/generators/templates/stories.tsx.hbs -------------------------------------------------------------------------------- /generators/templates/styles.ts.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/generators/templates/styles.ts.hbs -------------------------------------------------------------------------------- /generators/templates/test.tsx.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/generators/templates/test.tsx.hbs -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/jest.config.js -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next-seo.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/next-seo.config.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/package.json -------------------------------------------------------------------------------- /public/fonts/poppins-v12-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/public/fonts/poppins-v12-latin-300.woff2 -------------------------------------------------------------------------------- /public/fonts/poppins-v12-latin-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/public/fonts/poppins-v12-latin-600.woff2 -------------------------------------------------------------------------------- /public/fonts/poppins-v12-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/public/fonts/poppins-v12-latin-regular.woff2 -------------------------------------------------------------------------------- /public/img/auth-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/public/img/auth-bg.jpg -------------------------------------------------------------------------------- /public/img/cards/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/public/img/cards/mastercard.png -------------------------------------------------------------------------------- /public/img/cards/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/public/img/cards/visa.png -------------------------------------------------------------------------------- /public/img/dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/public/img/dots.svg -------------------------------------------------------------------------------- /public/img/empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/public/img/empty.svg -------------------------------------------------------------------------------- /public/img/games/cyberpunk-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/public/img/games/cyberpunk-1.jpg -------------------------------------------------------------------------------- /public/img/games/cyberpunk-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/public/img/games/cyberpunk-2.jpg -------------------------------------------------------------------------------- /public/img/games/cyberpunk-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/public/img/games/cyberpunk-3.jpg -------------------------------------------------------------------------------- /public/img/games/cyberpunk-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/public/img/games/cyberpunk-4.jpg -------------------------------------------------------------------------------- /public/img/games/cyberpunk-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/public/img/games/cyberpunk-5.jpg -------------------------------------------------------------------------------- /public/img/games/cyberpunk-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/public/img/games/cyberpunk-6.jpg -------------------------------------------------------------------------------- /public/img/hero-illustration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/public/img/hero-illustration.svg -------------------------------------------------------------------------------- /public/img/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/public/img/icon-192.png -------------------------------------------------------------------------------- /public/img/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/public/img/icon-512.png -------------------------------------------------------------------------------- /public/img/logo-gh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/public/img/logo-gh.svg -------------------------------------------------------------------------------- /public/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/public/img/logo.svg -------------------------------------------------------------------------------- /public/img/red-dead-float.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/public/img/red-dead-float.png -------------------------------------------------------------------------------- /public/img/red-dead-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/public/img/red-dead-img.jpg -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/public/manifest.json -------------------------------------------------------------------------------- /schema.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/schema.gql -------------------------------------------------------------------------------- /src/components/Analytics/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Analytics/index.tsx -------------------------------------------------------------------------------- /src/components/Banner/__snapshots__/test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Banner/__snapshots__/test.tsx.snap -------------------------------------------------------------------------------- /src/components/Banner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Banner/index.tsx -------------------------------------------------------------------------------- /src/components/Banner/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Banner/stories.tsx -------------------------------------------------------------------------------- /src/components/Banner/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Banner/styles.ts -------------------------------------------------------------------------------- /src/components/Banner/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Banner/test.tsx -------------------------------------------------------------------------------- /src/components/BannerSlider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/BannerSlider/index.tsx -------------------------------------------------------------------------------- /src/components/BannerSlider/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/BannerSlider/mock.ts -------------------------------------------------------------------------------- /src/components/BannerSlider/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/BannerSlider/stories.tsx -------------------------------------------------------------------------------- /src/components/BannerSlider/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/BannerSlider/styles.ts -------------------------------------------------------------------------------- /src/components/BannerSlider/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/BannerSlider/test.tsx -------------------------------------------------------------------------------- /src/components/Button/__snapshots__/test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Button/__snapshots__/test.tsx.snap -------------------------------------------------------------------------------- /src/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Button/index.tsx -------------------------------------------------------------------------------- /src/components/Button/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Button/stories.tsx -------------------------------------------------------------------------------- /src/components/Button/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Button/styles.ts -------------------------------------------------------------------------------- /src/components/Button/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Button/test.tsx -------------------------------------------------------------------------------- /src/components/CartButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/CartButton/index.tsx -------------------------------------------------------------------------------- /src/components/CartButton/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/CartButton/test.tsx -------------------------------------------------------------------------------- /src/components/CartDropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/CartDropdown/index.tsx -------------------------------------------------------------------------------- /src/components/CartDropdown/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/CartDropdown/stories.tsx -------------------------------------------------------------------------------- /src/components/CartDropdown/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/CartDropdown/styles.ts -------------------------------------------------------------------------------- /src/components/CartDropdown/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/CartDropdown/test.tsx -------------------------------------------------------------------------------- /src/components/CartIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/CartIcon/index.tsx -------------------------------------------------------------------------------- /src/components/CartIcon/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/CartIcon/stories.tsx -------------------------------------------------------------------------------- /src/components/CartIcon/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/CartIcon/styles.ts -------------------------------------------------------------------------------- /src/components/CartIcon/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/CartIcon/test.tsx -------------------------------------------------------------------------------- /src/components/CartList/__snapshots__/test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/CartList/__snapshots__/test.tsx.snap -------------------------------------------------------------------------------- /src/components/CartList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/CartList/index.tsx -------------------------------------------------------------------------------- /src/components/CartList/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/CartList/mock.ts -------------------------------------------------------------------------------- /src/components/CartList/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/CartList/stories.tsx -------------------------------------------------------------------------------- /src/components/CartList/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/CartList/styles.ts -------------------------------------------------------------------------------- /src/components/CartList/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/CartList/test.tsx -------------------------------------------------------------------------------- /src/components/Checkbox/__snapshots__/test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Checkbox/__snapshots__/test.tsx.snap -------------------------------------------------------------------------------- /src/components/Checkbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Checkbox/index.tsx -------------------------------------------------------------------------------- /src/components/Checkbox/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Checkbox/stories.tsx -------------------------------------------------------------------------------- /src/components/Checkbox/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Checkbox/styles.ts -------------------------------------------------------------------------------- /src/components/Checkbox/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Checkbox/test.tsx -------------------------------------------------------------------------------- /src/components/Container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Container/index.tsx -------------------------------------------------------------------------------- /src/components/Container/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Container/test.tsx -------------------------------------------------------------------------------- /src/components/Divider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Divider/index.tsx -------------------------------------------------------------------------------- /src/components/Divider/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Divider/test.tsx -------------------------------------------------------------------------------- /src/components/Dropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Dropdown/index.tsx -------------------------------------------------------------------------------- /src/components/Dropdown/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Dropdown/stories.tsx -------------------------------------------------------------------------------- /src/components/Dropdown/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Dropdown/styles.ts -------------------------------------------------------------------------------- /src/components/Dropdown/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Dropdown/test.tsx -------------------------------------------------------------------------------- /src/components/Empty/__snapshots__/test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Empty/__snapshots__/test.tsx.snap -------------------------------------------------------------------------------- /src/components/Empty/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Empty/index.tsx -------------------------------------------------------------------------------- /src/components/Empty/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Empty/stories.tsx -------------------------------------------------------------------------------- /src/components/Empty/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Empty/styles.ts -------------------------------------------------------------------------------- /src/components/Empty/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Empty/test.tsx -------------------------------------------------------------------------------- /src/components/ExploreSidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/ExploreSidebar/index.tsx -------------------------------------------------------------------------------- /src/components/ExploreSidebar/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/ExploreSidebar/mock.ts -------------------------------------------------------------------------------- /src/components/ExploreSidebar/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/ExploreSidebar/stories.tsx -------------------------------------------------------------------------------- /src/components/ExploreSidebar/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/ExploreSidebar/styles.ts -------------------------------------------------------------------------------- /src/components/ExploreSidebar/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/ExploreSidebar/test.tsx -------------------------------------------------------------------------------- /src/components/Footer/__snapshots__/test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Footer/__snapshots__/test.tsx.snap -------------------------------------------------------------------------------- /src/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Footer/index.tsx -------------------------------------------------------------------------------- /src/components/Footer/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Footer/stories.tsx -------------------------------------------------------------------------------- /src/components/Footer/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Footer/styles.ts -------------------------------------------------------------------------------- /src/components/Footer/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Footer/test.tsx -------------------------------------------------------------------------------- /src/components/Form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Form/index.tsx -------------------------------------------------------------------------------- /src/components/Form/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Form/test.tsx -------------------------------------------------------------------------------- /src/components/FormForgotPassword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/FormForgotPassword/index.tsx -------------------------------------------------------------------------------- /src/components/FormForgotPassword/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/FormForgotPassword/test.tsx -------------------------------------------------------------------------------- /src/components/FormProfile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/FormProfile/index.tsx -------------------------------------------------------------------------------- /src/components/FormProfile/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/FormProfile/stories.tsx -------------------------------------------------------------------------------- /src/components/FormProfile/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/FormProfile/styles.ts -------------------------------------------------------------------------------- /src/components/FormProfile/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/FormProfile/test.tsx -------------------------------------------------------------------------------- /src/components/FormResetPassword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/FormResetPassword/index.tsx -------------------------------------------------------------------------------- /src/components/FormResetPassword/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/FormResetPassword/test.tsx -------------------------------------------------------------------------------- /src/components/FormSignIn/__snapshots__/test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/FormSignIn/__snapshots__/test.tsx.snap -------------------------------------------------------------------------------- /src/components/FormSignIn/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/FormSignIn/index.tsx -------------------------------------------------------------------------------- /src/components/FormSignIn/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/FormSignIn/stories.tsx -------------------------------------------------------------------------------- /src/components/FormSignIn/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/FormSignIn/styles.ts -------------------------------------------------------------------------------- /src/components/FormSignIn/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/FormSignIn/test.tsx -------------------------------------------------------------------------------- /src/components/FormSignUp/__snapshots__/test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/FormSignUp/__snapshots__/test.tsx.snap -------------------------------------------------------------------------------- /src/components/FormSignUp/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/FormSignUp/index.tsx -------------------------------------------------------------------------------- /src/components/FormSignUp/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/FormSignUp/stories.tsx -------------------------------------------------------------------------------- /src/components/FormSignUp/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/FormSignUp/test.tsx -------------------------------------------------------------------------------- /src/components/Gallery/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Gallery/index.tsx -------------------------------------------------------------------------------- /src/components/Gallery/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Gallery/mock.ts -------------------------------------------------------------------------------- /src/components/Gallery/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Gallery/stories.tsx -------------------------------------------------------------------------------- /src/components/Gallery/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Gallery/styles.ts -------------------------------------------------------------------------------- /src/components/Gallery/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Gallery/test.tsx -------------------------------------------------------------------------------- /src/components/GameCard/__snapshots__/test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/GameCard/__snapshots__/test.tsx.snap -------------------------------------------------------------------------------- /src/components/GameCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/GameCard/index.tsx -------------------------------------------------------------------------------- /src/components/GameCard/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/GameCard/stories.tsx -------------------------------------------------------------------------------- /src/components/GameCard/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/GameCard/styles.ts -------------------------------------------------------------------------------- /src/components/GameCard/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/GameCard/test.tsx -------------------------------------------------------------------------------- /src/components/GameCardSlider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/GameCardSlider/index.tsx -------------------------------------------------------------------------------- /src/components/GameCardSlider/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/GameCardSlider/mock.ts -------------------------------------------------------------------------------- /src/components/GameCardSlider/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/GameCardSlider/stories.tsx -------------------------------------------------------------------------------- /src/components/GameCardSlider/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/GameCardSlider/styles.ts -------------------------------------------------------------------------------- /src/components/GameCardSlider/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/GameCardSlider/test.tsx -------------------------------------------------------------------------------- /src/components/GameDetails/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/GameDetails/index.tsx -------------------------------------------------------------------------------- /src/components/GameDetails/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/GameDetails/mock.ts -------------------------------------------------------------------------------- /src/components/GameDetails/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/GameDetails/stories.tsx -------------------------------------------------------------------------------- /src/components/GameDetails/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/GameDetails/styles.ts -------------------------------------------------------------------------------- /src/components/GameDetails/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/GameDetails/test.tsx -------------------------------------------------------------------------------- /src/components/GameInfo/__snapshots__/test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/GameInfo/__snapshots__/test.tsx.snap -------------------------------------------------------------------------------- /src/components/GameInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/GameInfo/index.tsx -------------------------------------------------------------------------------- /src/components/GameInfo/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/GameInfo/mock.ts -------------------------------------------------------------------------------- /src/components/GameInfo/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/GameInfo/stories.tsx -------------------------------------------------------------------------------- /src/components/GameInfo/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/GameInfo/styles.ts -------------------------------------------------------------------------------- /src/components/GameInfo/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/GameInfo/test.tsx -------------------------------------------------------------------------------- /src/components/GameItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/GameItem/index.tsx -------------------------------------------------------------------------------- /src/components/GameItem/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/GameItem/stories.tsx -------------------------------------------------------------------------------- /src/components/GameItem/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/GameItem/styles.ts -------------------------------------------------------------------------------- /src/components/GameItem/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/GameItem/test.tsx -------------------------------------------------------------------------------- /src/components/Grid/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Grid/index.tsx -------------------------------------------------------------------------------- /src/components/Grid/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Grid/test.tsx -------------------------------------------------------------------------------- /src/components/Heading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Heading/index.tsx -------------------------------------------------------------------------------- /src/components/Heading/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Heading/stories.tsx -------------------------------------------------------------------------------- /src/components/Heading/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Heading/styles.ts -------------------------------------------------------------------------------- /src/components/Heading/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Heading/test.tsx -------------------------------------------------------------------------------- /src/components/Highlight/__snapshots__/test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Highlight/__snapshots__/test.tsx.snap -------------------------------------------------------------------------------- /src/components/Highlight/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Highlight/index.tsx -------------------------------------------------------------------------------- /src/components/Highlight/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Highlight/mock.ts -------------------------------------------------------------------------------- /src/components/Highlight/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Highlight/stories.tsx -------------------------------------------------------------------------------- /src/components/Highlight/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Highlight/styles.ts -------------------------------------------------------------------------------- /src/components/Highlight/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Highlight/test.tsx -------------------------------------------------------------------------------- /src/components/Loader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Loader/index.tsx -------------------------------------------------------------------------------- /src/components/Loader/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Loader/test.tsx -------------------------------------------------------------------------------- /src/components/Logo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Logo/index.tsx -------------------------------------------------------------------------------- /src/components/Logo/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Logo/stories.tsx -------------------------------------------------------------------------------- /src/components/Logo/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Logo/styles.ts -------------------------------------------------------------------------------- /src/components/Logo/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Logo/test.tsx -------------------------------------------------------------------------------- /src/components/MediaMatch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/MediaMatch/index.tsx -------------------------------------------------------------------------------- /src/components/MediaMatch/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/MediaMatch/stories.tsx -------------------------------------------------------------------------------- /src/components/MediaMatch/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/MediaMatch/test.tsx -------------------------------------------------------------------------------- /src/components/Menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Menu/index.tsx -------------------------------------------------------------------------------- /src/components/Menu/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Menu/stories.tsx -------------------------------------------------------------------------------- /src/components/Menu/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Menu/styles.ts -------------------------------------------------------------------------------- /src/components/Menu/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Menu/test.tsx -------------------------------------------------------------------------------- /src/components/OrdersList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/OrdersList/index.tsx -------------------------------------------------------------------------------- /src/components/OrdersList/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/OrdersList/mock.ts -------------------------------------------------------------------------------- /src/components/OrdersList/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/OrdersList/stories.tsx -------------------------------------------------------------------------------- /src/components/OrdersList/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/OrdersList/styles.ts -------------------------------------------------------------------------------- /src/components/OrdersList/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/OrdersList/test.tsx -------------------------------------------------------------------------------- /src/components/PaymentForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/PaymentForm/index.tsx -------------------------------------------------------------------------------- /src/components/PaymentForm/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/PaymentForm/styles.ts -------------------------------------------------------------------------------- /src/components/PaymentForm/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/PaymentForm/test.tsx -------------------------------------------------------------------------------- /src/components/ProfileMenu/__snapshots__/test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/ProfileMenu/__snapshots__/test.tsx.snap -------------------------------------------------------------------------------- /src/components/ProfileMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/ProfileMenu/index.tsx -------------------------------------------------------------------------------- /src/components/ProfileMenu/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/ProfileMenu/stories.tsx -------------------------------------------------------------------------------- /src/components/ProfileMenu/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/ProfileMenu/styles.ts -------------------------------------------------------------------------------- /src/components/ProfileMenu/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/ProfileMenu/test.tsx -------------------------------------------------------------------------------- /src/components/Radio/__snapshots__/test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Radio/__snapshots__/test.tsx.snap -------------------------------------------------------------------------------- /src/components/Radio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Radio/index.tsx -------------------------------------------------------------------------------- /src/components/Radio/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Radio/stories.tsx -------------------------------------------------------------------------------- /src/components/Radio/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Radio/styles.ts -------------------------------------------------------------------------------- /src/components/Radio/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Radio/test.tsx -------------------------------------------------------------------------------- /src/components/Ribbon/__snapshots__/test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Ribbon/__snapshots__/test.tsx.snap -------------------------------------------------------------------------------- /src/components/Ribbon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Ribbon/index.tsx -------------------------------------------------------------------------------- /src/components/Ribbon/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Ribbon/stories.tsx -------------------------------------------------------------------------------- /src/components/Ribbon/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Ribbon/styles.ts -------------------------------------------------------------------------------- /src/components/Ribbon/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Ribbon/test.tsx -------------------------------------------------------------------------------- /src/components/Showcase/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Showcase/index.tsx -------------------------------------------------------------------------------- /src/components/Showcase/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Showcase/stories.tsx -------------------------------------------------------------------------------- /src/components/Showcase/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Showcase/styles.ts -------------------------------------------------------------------------------- /src/components/Showcase/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Showcase/test.tsx -------------------------------------------------------------------------------- /src/components/Slider/__snapshots__/test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Slider/__snapshots__/test.tsx.snap -------------------------------------------------------------------------------- /src/components/Slider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Slider/index.tsx -------------------------------------------------------------------------------- /src/components/Slider/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Slider/stories.tsx -------------------------------------------------------------------------------- /src/components/Slider/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Slider/styles.ts -------------------------------------------------------------------------------- /src/components/Slider/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Slider/test.tsx -------------------------------------------------------------------------------- /src/components/Spinner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Spinner/index.tsx -------------------------------------------------------------------------------- /src/components/Spinner/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Spinner/stories.tsx -------------------------------------------------------------------------------- /src/components/Spinner/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Spinner/styles.ts -------------------------------------------------------------------------------- /src/components/Spinner/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/Spinner/test.tsx -------------------------------------------------------------------------------- /src/components/StickyNote/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/StickyNote/index.tsx -------------------------------------------------------------------------------- /src/components/TextContent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/TextContent/index.tsx -------------------------------------------------------------------------------- /src/components/TextContent/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/TextContent/mock.ts -------------------------------------------------------------------------------- /src/components/TextContent/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/TextContent/stories.tsx -------------------------------------------------------------------------------- /src/components/TextContent/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/TextContent/styles.ts -------------------------------------------------------------------------------- /src/components/TextContent/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/TextContent/test.tsx -------------------------------------------------------------------------------- /src/components/TextField/__snapshots__/test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/TextField/__snapshots__/test.tsx.snap -------------------------------------------------------------------------------- /src/components/TextField/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/TextField/index.tsx -------------------------------------------------------------------------------- /src/components/TextField/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/TextField/stories.tsx -------------------------------------------------------------------------------- /src/components/TextField/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/TextField/styles.ts -------------------------------------------------------------------------------- /src/components/TextField/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/TextField/test.tsx -------------------------------------------------------------------------------- /src/components/UserDropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/UserDropdown/index.tsx -------------------------------------------------------------------------------- /src/components/UserDropdown/stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/UserDropdown/stories.tsx -------------------------------------------------------------------------------- /src/components/UserDropdown/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/UserDropdown/styles.ts -------------------------------------------------------------------------------- /src/components/UserDropdown/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/UserDropdown/test.tsx -------------------------------------------------------------------------------- /src/components/WishlistButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/WishlistButton/index.tsx -------------------------------------------------------------------------------- /src/components/WishlistButton/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/components/WishlistButton/test.tsx -------------------------------------------------------------------------------- /src/graphql/fragments/banner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/fragments/banner.ts -------------------------------------------------------------------------------- /src/graphql/fragments/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/fragments/game.ts -------------------------------------------------------------------------------- /src/graphql/fragments/highlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/fragments/highlight.ts -------------------------------------------------------------------------------- /src/graphql/generated/BannerFragment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/generated/BannerFragment.ts -------------------------------------------------------------------------------- /src/graphql/generated/GameFragment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/generated/GameFragment.ts -------------------------------------------------------------------------------- /src/graphql/generated/HighlightFragment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/generated/HighlightFragment.ts -------------------------------------------------------------------------------- /src/graphql/generated/MutationCreateWishlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/generated/MutationCreateWishlist.ts -------------------------------------------------------------------------------- /src/graphql/generated/MutationRegister.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/generated/MutationRegister.ts -------------------------------------------------------------------------------- /src/graphql/generated/MutationUpdateWishlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/generated/MutationUpdateWishlist.ts -------------------------------------------------------------------------------- /src/graphql/generated/QueryGameBySlug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/generated/QueryGameBySlug.ts -------------------------------------------------------------------------------- /src/graphql/generated/QueryGames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/generated/QueryGames.ts -------------------------------------------------------------------------------- /src/graphql/generated/QueryHome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/generated/QueryHome.ts -------------------------------------------------------------------------------- /src/graphql/generated/QueryOrders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/generated/QueryOrders.ts -------------------------------------------------------------------------------- /src/graphql/generated/QueryProfileMe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/generated/QueryProfileMe.ts -------------------------------------------------------------------------------- /src/graphql/generated/QueryRecommended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/generated/QueryRecommended.ts -------------------------------------------------------------------------------- /src/graphql/generated/QueryUpcoming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/generated/QueryUpcoming.ts -------------------------------------------------------------------------------- /src/graphql/generated/QueryWishlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/generated/QueryWishlist.ts -------------------------------------------------------------------------------- /src/graphql/generated/globalTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/generated/globalTypes.ts -------------------------------------------------------------------------------- /src/graphql/mutations/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/mutations/register.ts -------------------------------------------------------------------------------- /src/graphql/mutations/wishlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/mutations/wishlist.ts -------------------------------------------------------------------------------- /src/graphql/queries/games.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/queries/games.ts -------------------------------------------------------------------------------- /src/graphql/queries/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/queries/home.ts -------------------------------------------------------------------------------- /src/graphql/queries/orders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/queries/orders.ts -------------------------------------------------------------------------------- /src/graphql/queries/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/queries/profile.ts -------------------------------------------------------------------------------- /src/graphql/queries/recommended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/queries/recommended.ts -------------------------------------------------------------------------------- /src/graphql/queries/upcoming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/queries/upcoming.ts -------------------------------------------------------------------------------- /src/graphql/queries/wishlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/graphql/queries/wishlist.ts -------------------------------------------------------------------------------- /src/hooks/use-cart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/hooks/use-cart/index.tsx -------------------------------------------------------------------------------- /src/hooks/use-cart/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/hooks/use-cart/mock.ts -------------------------------------------------------------------------------- /src/hooks/use-cart/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/hooks/use-cart/test.tsx -------------------------------------------------------------------------------- /src/hooks/use-wishlist/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/hooks/use-wishlist/index.tsx -------------------------------------------------------------------------------- /src/hooks/use-wishlist/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/hooks/use-wishlist/mock.ts -------------------------------------------------------------------------------- /src/hooks/use-wishlist/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/hooks/use-wishlist/test.tsx -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/api/auth/[...nextauth].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/pages/api/auth/[...nextauth].ts -------------------------------------------------------------------------------- /src/pages/cart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/pages/cart.tsx -------------------------------------------------------------------------------- /src/pages/forgot-password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/pages/forgot-password.tsx -------------------------------------------------------------------------------- /src/pages/game/[slug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/pages/game/[slug].tsx -------------------------------------------------------------------------------- /src/pages/games.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/pages/games.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/profile/me.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/pages/profile/me.tsx -------------------------------------------------------------------------------- /src/pages/profile/orders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/pages/profile/orders.tsx -------------------------------------------------------------------------------- /src/pages/reset-password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/pages/reset-password.tsx -------------------------------------------------------------------------------- /src/pages/sign-in.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/pages/sign-in.tsx -------------------------------------------------------------------------------- /src/pages/sign-up.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/pages/sign-up.tsx -------------------------------------------------------------------------------- /src/pages/success.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/pages/success.tsx -------------------------------------------------------------------------------- /src/pages/wishlist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/pages/wishlist.tsx -------------------------------------------------------------------------------- /src/styles/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/styles/global.ts -------------------------------------------------------------------------------- /src/styles/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/styles/theme.ts -------------------------------------------------------------------------------- /src/templates/Auth/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Auth/index.tsx -------------------------------------------------------------------------------- /src/templates/Auth/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Auth/styles.ts -------------------------------------------------------------------------------- /src/templates/Auth/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Auth/test.tsx -------------------------------------------------------------------------------- /src/templates/Base/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Base/index.tsx -------------------------------------------------------------------------------- /src/templates/Base/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Base/styles.ts -------------------------------------------------------------------------------- /src/templates/Base/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Base/test.tsx -------------------------------------------------------------------------------- /src/templates/Cart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Cart/index.tsx -------------------------------------------------------------------------------- /src/templates/Cart/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Cart/styles.ts -------------------------------------------------------------------------------- /src/templates/Cart/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Cart/test.tsx -------------------------------------------------------------------------------- /src/templates/Game/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Game/index.tsx -------------------------------------------------------------------------------- /src/templates/Game/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Game/styles.ts -------------------------------------------------------------------------------- /src/templates/Game/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Game/test.tsx -------------------------------------------------------------------------------- /src/templates/Games/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Games/index.tsx -------------------------------------------------------------------------------- /src/templates/Games/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Games/mocks.ts -------------------------------------------------------------------------------- /src/templates/Games/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Games/styles.ts -------------------------------------------------------------------------------- /src/templates/Games/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Games/test.tsx -------------------------------------------------------------------------------- /src/templates/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Home/index.tsx -------------------------------------------------------------------------------- /src/templates/Home/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Home/styles.ts -------------------------------------------------------------------------------- /src/templates/Home/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Home/test.tsx -------------------------------------------------------------------------------- /src/templates/Profile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Profile/index.tsx -------------------------------------------------------------------------------- /src/templates/Profile/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Profile/styles.ts -------------------------------------------------------------------------------- /src/templates/Profile/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Profile/test.tsx -------------------------------------------------------------------------------- /src/templates/Success/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Success/index.tsx -------------------------------------------------------------------------------- /src/templates/Success/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Success/styles.ts -------------------------------------------------------------------------------- /src/templates/Wishlist/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Wishlist/index.tsx -------------------------------------------------------------------------------- /src/templates/Wishlist/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Wishlist/styles.ts -------------------------------------------------------------------------------- /src/templates/Wishlist/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/templates/Wishlist/test.tsx -------------------------------------------------------------------------------- /src/types/jest-styled-components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/types/jest-styled-components.d.ts -------------------------------------------------------------------------------- /src/types/styled-components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/types/styled-components.d.ts -------------------------------------------------------------------------------- /src/utils/apollo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/utils/apollo.ts -------------------------------------------------------------------------------- /src/utils/apolloCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/utils/apolloCache.ts -------------------------------------------------------------------------------- /src/utils/filter/fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/utils/filter/fields.ts -------------------------------------------------------------------------------- /src/utils/filter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/utils/filter/index.ts -------------------------------------------------------------------------------- /src/utils/filter/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/utils/filter/test.ts -------------------------------------------------------------------------------- /src/utils/format-price.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/utils/format-price.ts -------------------------------------------------------------------------------- /src/utils/getImageUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/utils/getImageUrl.ts -------------------------------------------------------------------------------- /src/utils/localStorage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/utils/localStorage/index.ts -------------------------------------------------------------------------------- /src/utils/localStorage/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/utils/localStorage/test.ts -------------------------------------------------------------------------------- /src/utils/mappers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/utils/mappers/index.ts -------------------------------------------------------------------------------- /src/utils/mappers/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/utils/mappers/test.ts -------------------------------------------------------------------------------- /src/utils/mockServer/handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/utils/mockServer/handlers.ts -------------------------------------------------------------------------------- /src/utils/mockServer/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/utils/mockServer/server.ts -------------------------------------------------------------------------------- /src/utils/protected-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/utils/protected-routes.ts -------------------------------------------------------------------------------- /src/utils/stripe/methods.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/utils/stripe/methods.tsx -------------------------------------------------------------------------------- /src/utils/test-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/utils/test-utils.tsx -------------------------------------------------------------------------------- /src/utils/validations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/utils/validations/index.ts -------------------------------------------------------------------------------- /src/utils/validations/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/src/utils/validations/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Won-Games/client/HEAD/yarn.lock --------------------------------------------------------------------------------