├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json └── src ├── App.css ├── App.js ├── App.test.js ├── components ├── FaceRecognition │ ├── FaceRecognition.css │ └── FaceRecognition.js ├── ImageLinkForm │ ├── ImageLinkForm.css │ └── ImageLinkForm.js ├── Logo │ ├── Logo.css │ ├── Logo.js │ └── brain.png ├── Modal │ ├── Modal.css │ └── Modal.js ├── Navigation │ └── Navigation.js ├── Profile │ ├── Profile.css │ ├── Profile.js │ └── ProfileIcon.js ├── Rank │ └── Rank.js ├── Register │ ├── Register.css │ └── Register.js └── Signin │ ├── Signin.css │ └── Signin.js ├── index.css ├── index.js └── registerServiceWorker.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/FaceRecognition/FaceRecognition.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/src/components/FaceRecognition/FaceRecognition.css -------------------------------------------------------------------------------- /src/components/FaceRecognition/FaceRecognition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/src/components/FaceRecognition/FaceRecognition.js -------------------------------------------------------------------------------- /src/components/ImageLinkForm/ImageLinkForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/src/components/ImageLinkForm/ImageLinkForm.css -------------------------------------------------------------------------------- /src/components/ImageLinkForm/ImageLinkForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/src/components/ImageLinkForm/ImageLinkForm.js -------------------------------------------------------------------------------- /src/components/Logo/Logo.css: -------------------------------------------------------------------------------- 1 | .Tilt { 2 | background: linear-gradient(89deg, #FF5EDF 0%, #04C8DE 100%); /* w3c */ 3 | } -------------------------------------------------------------------------------- /src/components/Logo/Logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/src/components/Logo/Logo.js -------------------------------------------------------------------------------- /src/components/Logo/brain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/src/components/Logo/brain.png -------------------------------------------------------------------------------- /src/components/Modal/Modal.css: -------------------------------------------------------------------------------- 1 | #modal-root { 2 | position: relative; 3 | z-index: 999; 4 | } -------------------------------------------------------------------------------- /src/components/Modal/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/src/components/Modal/Modal.js -------------------------------------------------------------------------------- /src/components/Navigation/Navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/src/components/Navigation/Navigation.js -------------------------------------------------------------------------------- /src/components/Profile/Profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/src/components/Profile/Profile.css -------------------------------------------------------------------------------- /src/components/Profile/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/src/components/Profile/Profile.js -------------------------------------------------------------------------------- /src/components/Profile/ProfileIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/src/components/Profile/ProfileIcon.js -------------------------------------------------------------------------------- /src/components/Rank/Rank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/src/components/Rank/Rank.js -------------------------------------------------------------------------------- /src/components/Register/Register.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/src/components/Register/Register.css -------------------------------------------------------------------------------- /src/components/Register/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/src/components/Register/Register.js -------------------------------------------------------------------------------- /src/components/Signin/Signin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/src/components/Signin/Signin.css -------------------------------------------------------------------------------- /src/components/Signin/Signin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/src/components/Signin/Signin.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/src/index.js -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/smart-brain-boost-lambda/HEAD/src/registerServiceWorker.js --------------------------------------------------------------------------------