├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── assets ├── eth.jpg ├── subscribe.jpg ├── terminal.png └── video.mp4 ├── components ├── about │ ├── About.css │ ├── About.js │ └── AboutCard.js ├── developer │ ├── Developer.css │ └── Developer.js ├── footer │ ├── Footer.css │ └── Footer.js ├── hero │ ├── Hero.css │ └── Hero.js ├── navbar │ ├── Navbar.css │ └── Navbar.js └── subscribe │ ├── Subscribe.css │ └── Subscribe.js ├── index.css └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/src/App.js -------------------------------------------------------------------------------- /src/assets/eth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/src/assets/eth.jpg -------------------------------------------------------------------------------- /src/assets/subscribe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/src/assets/subscribe.jpg -------------------------------------------------------------------------------- /src/assets/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/src/assets/terminal.png -------------------------------------------------------------------------------- /src/assets/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/src/assets/video.mp4 -------------------------------------------------------------------------------- /src/components/about/About.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/src/components/about/About.css -------------------------------------------------------------------------------- /src/components/about/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/src/components/about/About.js -------------------------------------------------------------------------------- /src/components/about/AboutCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/src/components/about/AboutCard.js -------------------------------------------------------------------------------- /src/components/developer/Developer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/src/components/developer/Developer.css -------------------------------------------------------------------------------- /src/components/developer/Developer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/src/components/developer/Developer.js -------------------------------------------------------------------------------- /src/components/footer/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/src/components/footer/Footer.css -------------------------------------------------------------------------------- /src/components/footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/src/components/footer/Footer.js -------------------------------------------------------------------------------- /src/components/hero/Hero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/src/components/hero/Hero.css -------------------------------------------------------------------------------- /src/components/hero/Hero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/src/components/hero/Hero.js -------------------------------------------------------------------------------- /src/components/navbar/Navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/src/components/navbar/Navbar.css -------------------------------------------------------------------------------- /src/components/navbar/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/src/components/navbar/Navbar.js -------------------------------------------------------------------------------- /src/components/subscribe/Subscribe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/src/components/subscribe/Subscribe.css -------------------------------------------------------------------------------- /src/components/subscribe/Subscribe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/src/components/subscribe/Subscribe.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireclint/defi-react-site/HEAD/src/index.js --------------------------------------------------------------------------------