├── .DS_Store ├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── config-overrides.js ├── jsconfig.json ├── package.json ├── pages ├── Dashboard.css └── Dashboard.js ├── public ├── .DS_Store ├── favicon.ico ├── images │ ├── dot-triangle.png │ ├── logo.png │ └── quantumkeep2.png ├── index.html ├── logo.png ├── manifest.json └── robots.txt ├── server.js └── src ├── .DS_Store ├── About.css ├── About.js ├── App.css ├── App.js ├── App.test.js ├── Contact.css ├── Contact.js ├── Header.css ├── Header.js ├── HeroSection.css ├── HeroSection.js ├── HowItWorks.css ├── HowItWorks.js ├── Pricing.css ├── Pricing.js ├── confetti.js ├── images ├── dot-triangle.png ├── logo.png └── quantumkeep2.png ├── index.css ├── index.js ├── logo.svg ├── pages ├── Dashboard.css └── Dashboard.js ├── reportWebVitals.js ├── setupTests.js └── utils ├── Decryption.js └── Encryption.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # dependency directories 2 | node_modules/ 3 | .env 4 | build/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/README.md -------------------------------------------------------------------------------- /config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/config-overrides.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/package.json -------------------------------------------------------------------------------- /pages/Dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/pages/Dashboard.css -------------------------------------------------------------------------------- /pages/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/pages/Dashboard.js -------------------------------------------------------------------------------- /public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/public/.DS_Store -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/dot-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/public/images/dot-triangle.png -------------------------------------------------------------------------------- /public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/public/images/logo.png -------------------------------------------------------------------------------- /public/images/quantumkeep2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/public/images/quantumkeep2.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.quantumkeep.io/sitemap.xml 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/server.js -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/About.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/About.css -------------------------------------------------------------------------------- /src/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/About.js -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/Contact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/Contact.css -------------------------------------------------------------------------------- /src/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/Contact.js -------------------------------------------------------------------------------- /src/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/Header.css -------------------------------------------------------------------------------- /src/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/Header.js -------------------------------------------------------------------------------- /src/HeroSection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/HeroSection.css -------------------------------------------------------------------------------- /src/HeroSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/HeroSection.js -------------------------------------------------------------------------------- /src/HowItWorks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/HowItWorks.css -------------------------------------------------------------------------------- /src/HowItWorks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/HowItWorks.js -------------------------------------------------------------------------------- /src/Pricing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/Pricing.css -------------------------------------------------------------------------------- /src/Pricing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/Pricing.js -------------------------------------------------------------------------------- /src/confetti.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/confetti.js -------------------------------------------------------------------------------- /src/images/dot-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/images/dot-triangle.png -------------------------------------------------------------------------------- /src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/images/logo.png -------------------------------------------------------------------------------- /src/images/quantumkeep2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/images/quantumkeep2.png -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/pages/Dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/pages/Dashboard.css -------------------------------------------------------------------------------- /src/pages/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/pages/Dashboard.js -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/utils/Decryption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/utils/Decryption.js -------------------------------------------------------------------------------- /src/utils/Encryption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forresttindall/QuantumKeep/HEAD/src/utils/Encryption.js --------------------------------------------------------------------------------