├── .github └── workflows │ ├── github.yml │ └── ipfs.yml ├── .gitignore ├── .nvmrc ├── .prettierrc ├── LICENSE ├── README.md ├── package.json ├── public ├── favicon.ico ├── fonts │ ├── MonumentExtended-Regular.otf │ ├── MonumentExtended-Regular.woff │ ├── MonumentExtended-Regular.woff2 │ ├── MonumentExtended-Ultrabold.otf │ ├── MonumentExtended-Ultrabold.woff │ ├── MonumentExtended-Ultrabold.woff2 │ ├── icons.eot │ ├── icons.svg │ ├── icons.ttf │ ├── icons.woff │ └── selection.json ├── images │ ├── default.jpg │ ├── light.png │ └── logo.svg ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json ├── models │ ├── face_expression_model-shard1 │ ├── face_expression_model-weights_manifest.json │ ├── face_landmark_68_model-shard1 │ ├── face_landmark_68_model-weights_manifest.json │ ├── face_landmark_68_tiny_model-shard1 │ ├── face_landmark_68_tiny_model-weights_manifest.json │ ├── face_recognition_model-shard1 │ ├── face_recognition_model-shard2 │ ├── face_recognition_model-weights_manifest.json │ ├── tiny_face_detector_model-shard1 │ └── tiny_face_detector_model-weights_manifest.json └── robots.txt ├── src ├── components │ ├── .gitkeep │ ├── Button.tsx │ ├── Card.tsx │ ├── Dropdown.tsx │ ├── Figure.tsx │ ├── Grid.tsx │ ├── Main.tsx │ ├── Section.tsx │ ├── SvgIcon.tsx │ ├── Text.tsx │ ├── Title.tsx │ └── Variant.tsx ├── containers │ ├── .gitkeep │ ├── Footer.tsx │ ├── Header.tsx │ ├── Info.tsx │ ├── Lasers.tsx │ ├── Playground.tsx │ ├── Sandbox.tsx │ └── Social.tsx ├── core │ └── App.tsx ├── helpers │ ├── const.ts │ ├── hooks.ts │ ├── types.ts │ └── utils.ts ├── icons │ └── Twitter.tsx ├── index.tsx ├── layouts │ ├── global-font.js │ ├── global-styles.ts │ ├── index.tsx │ └── theme.ts ├── react-app-env.d.ts ├── static │ ├── light-hit-01.png │ ├── light-hit-02.png │ ├── light-hit-03.png │ ├── light-hit-04.png │ ├── light-hit-05.png │ ├── light-hit-06.png │ ├── light-hit-07.png │ └── light-hit-08.png └── styled.d.ts ├── tsconfig.json └── yarn.lock /.github/workflows/github.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/.github/workflows/github.yml -------------------------------------------------------------------------------- /.github/workflows/ipfs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/.github/workflows/ipfs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v16.13.2 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/MonumentExtended-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/fonts/MonumentExtended-Regular.otf -------------------------------------------------------------------------------- /public/fonts/MonumentExtended-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/fonts/MonumentExtended-Regular.woff -------------------------------------------------------------------------------- /public/fonts/MonumentExtended-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/fonts/MonumentExtended-Regular.woff2 -------------------------------------------------------------------------------- /public/fonts/MonumentExtended-Ultrabold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/fonts/MonumentExtended-Ultrabold.otf -------------------------------------------------------------------------------- /public/fonts/MonumentExtended-Ultrabold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/fonts/MonumentExtended-Ultrabold.woff -------------------------------------------------------------------------------- /public/fonts/MonumentExtended-Ultrabold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/fonts/MonumentExtended-Ultrabold.woff2 -------------------------------------------------------------------------------- /public/fonts/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/fonts/icons.eot -------------------------------------------------------------------------------- /public/fonts/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/fonts/icons.svg -------------------------------------------------------------------------------- /public/fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/fonts/icons.ttf -------------------------------------------------------------------------------- /public/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/fonts/icons.woff -------------------------------------------------------------------------------- /public/fonts/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/fonts/selection.json -------------------------------------------------------------------------------- /public/images/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/images/default.jpg -------------------------------------------------------------------------------- /public/images/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/images/light.png -------------------------------------------------------------------------------- /public/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/images/logo.svg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/models/face_expression_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/models/face_expression_model-shard1 -------------------------------------------------------------------------------- /public/models/face_expression_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/models/face_expression_model-weights_manifest.json -------------------------------------------------------------------------------- /public/models/face_landmark_68_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/models/face_landmark_68_model-shard1 -------------------------------------------------------------------------------- /public/models/face_landmark_68_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/models/face_landmark_68_model-weights_manifest.json -------------------------------------------------------------------------------- /public/models/face_landmark_68_tiny_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/models/face_landmark_68_tiny_model-shard1 -------------------------------------------------------------------------------- /public/models/face_landmark_68_tiny_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/models/face_landmark_68_tiny_model-weights_manifest.json -------------------------------------------------------------------------------- /public/models/face_recognition_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/models/face_recognition_model-shard1 -------------------------------------------------------------------------------- /public/models/face_recognition_model-shard2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/models/face_recognition_model-shard2 -------------------------------------------------------------------------------- /public/models/face_recognition_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/models/face_recognition_model-weights_manifest.json -------------------------------------------------------------------------------- /public/models/tiny_face_detector_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/models/tiny_face_detector_model-shard1 -------------------------------------------------------------------------------- /public/models/tiny_face_detector_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/models/tiny_face_detector_model-weights_manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/components/Button.tsx -------------------------------------------------------------------------------- /src/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/components/Card.tsx -------------------------------------------------------------------------------- /src/components/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/components/Dropdown.tsx -------------------------------------------------------------------------------- /src/components/Figure.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/components/Figure.tsx -------------------------------------------------------------------------------- /src/components/Grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/components/Grid.tsx -------------------------------------------------------------------------------- /src/components/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/components/Main.tsx -------------------------------------------------------------------------------- /src/components/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/components/Section.tsx -------------------------------------------------------------------------------- /src/components/SvgIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/components/SvgIcon.tsx -------------------------------------------------------------------------------- /src/components/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/components/Text.tsx -------------------------------------------------------------------------------- /src/components/Title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/components/Title.tsx -------------------------------------------------------------------------------- /src/components/Variant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/components/Variant.tsx -------------------------------------------------------------------------------- /src/containers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/containers/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/containers/Footer.tsx -------------------------------------------------------------------------------- /src/containers/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/containers/Header.tsx -------------------------------------------------------------------------------- /src/containers/Info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/containers/Info.tsx -------------------------------------------------------------------------------- /src/containers/Lasers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/containers/Lasers.tsx -------------------------------------------------------------------------------- /src/containers/Playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/containers/Playground.tsx -------------------------------------------------------------------------------- /src/containers/Sandbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/containers/Sandbox.tsx -------------------------------------------------------------------------------- /src/containers/Social.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/containers/Social.tsx -------------------------------------------------------------------------------- /src/core/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/core/App.tsx -------------------------------------------------------------------------------- /src/helpers/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/helpers/const.ts -------------------------------------------------------------------------------- /src/helpers/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/helpers/hooks.ts -------------------------------------------------------------------------------- /src/helpers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/helpers/types.ts -------------------------------------------------------------------------------- /src/helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/helpers/utils.ts -------------------------------------------------------------------------------- /src/icons/Twitter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/icons/Twitter.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/layouts/global-font.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/layouts/global-font.js -------------------------------------------------------------------------------- /src/layouts/global-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/layouts/global-styles.ts -------------------------------------------------------------------------------- /src/layouts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/layouts/index.tsx -------------------------------------------------------------------------------- /src/layouts/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/layouts/theme.ts -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/static/light-hit-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/static/light-hit-01.png -------------------------------------------------------------------------------- /src/static/light-hit-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/static/light-hit-02.png -------------------------------------------------------------------------------- /src/static/light-hit-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/static/light-hit-03.png -------------------------------------------------------------------------------- /src/static/light-hit-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/static/light-hit-04.png -------------------------------------------------------------------------------- /src/static/light-hit-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/static/light-hit-05.png -------------------------------------------------------------------------------- /src/static/light-hit-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/static/light-hit-06.png -------------------------------------------------------------------------------- /src/static/light-hit-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/static/light-hit-07.png -------------------------------------------------------------------------------- /src/static/light-hit-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/static/light-hit-08.png -------------------------------------------------------------------------------- /src/styled.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/src/styled.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stakefish/crypto-laser-eyes/HEAD/yarn.lock --------------------------------------------------------------------------------