├── .eslintrc.js ├── .gitignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── craco.config.js ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── index.html ├── manifest.json └── robots.txt ├── pull_request_template.md ├── src ├── App.tsx ├── assets │ ├── fonts │ │ ├── AkkuratStd-Light.otf │ │ └── AkkuratStd-Regular.otf │ └── images │ │ ├── download.svg │ │ ├── infurabox_open_trans_optimized.png │ │ ├── infurabox_open_trans_optimized_cropped.png │ │ ├── logo.png │ │ ├── lootbox_open copy.png │ │ ├── lootbox_open.png │ │ ├── nft_example.png │ │ └── play.svg ├── components │ ├── Header.tsx │ ├── Hero.tsx │ ├── PlayButton.tsx │ ├── PrimaryButton.tsx │ ├── Project.tsx │ ├── ProjectDetail.tsx │ ├── ProjectList.tsx │ ├── ProjectsModule.tsx │ └── SecondaryButton.tsx ├── index.tsx ├── react-app-env.d.ts └── styles │ ├── button.module.css │ └── index.css ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/README.md -------------------------------------------------------------------------------- /craco.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/craco.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/public/robots.txt -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/fonts/AkkuratStd-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/src/assets/fonts/AkkuratStd-Light.otf -------------------------------------------------------------------------------- /src/assets/fonts/AkkuratStd-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/src/assets/fonts/AkkuratStd-Regular.otf -------------------------------------------------------------------------------- /src/assets/images/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/src/assets/images/download.svg -------------------------------------------------------------------------------- /src/assets/images/infurabox_open_trans_optimized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/src/assets/images/infurabox_open_trans_optimized.png -------------------------------------------------------------------------------- /src/assets/images/infurabox_open_trans_optimized_cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/src/assets/images/infurabox_open_trans_optimized_cropped.png -------------------------------------------------------------------------------- /src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/src/assets/images/logo.png -------------------------------------------------------------------------------- /src/assets/images/lootbox_open copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/src/assets/images/lootbox_open copy.png -------------------------------------------------------------------------------- /src/assets/images/lootbox_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/src/assets/images/lootbox_open.png -------------------------------------------------------------------------------- /src/assets/images/nft_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/src/assets/images/nft_example.png -------------------------------------------------------------------------------- /src/assets/images/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/src/assets/images/play.svg -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/src/components/Hero.tsx -------------------------------------------------------------------------------- /src/components/PlayButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/src/components/PlayButton.tsx -------------------------------------------------------------------------------- /src/components/PrimaryButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/src/components/PrimaryButton.tsx -------------------------------------------------------------------------------- /src/components/Project.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/src/components/Project.tsx -------------------------------------------------------------------------------- /src/components/ProjectDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/src/components/ProjectDetail.tsx -------------------------------------------------------------------------------- /src/components/ProjectList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/src/components/ProjectList.tsx -------------------------------------------------------------------------------- /src/components/ProjectsModule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/src/components/ProjectsModule.tsx -------------------------------------------------------------------------------- /src/components/SecondaryButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/src/components/SecondaryButton.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/styles/button.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/src/styles/button.module.css -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/src/styles/index.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INFURA/nft-api-lootbox-landing-page/HEAD/yarn.lock --------------------------------------------------------------------------------