├── LICENSE ├── README.md ├── application ├── .gitignore ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── components │ │ ├── ButtonElements.js │ │ ├── footer │ │ │ ├── FooterElements.js │ │ │ └── index.js │ │ ├── heroSection │ │ │ ├── HeroElements.js │ │ │ └── index.js │ │ ├── infoSection │ │ │ ├── InfoElements.js │ │ │ └── index.js │ │ ├── infoSectionLight │ │ │ ├── index.js │ │ │ └── infoElements.js │ │ ├── navbar │ │ │ ├── NavbarElements.js │ │ │ └── index.js │ │ ├── services │ │ │ ├── ServicesElements.js │ │ │ └── index.js │ │ ├── sidebar │ │ │ ├── SidebarElements.js │ │ │ └── index.js │ │ └── signin │ │ │ ├── SigninElements.js │ │ │ └── index.js │ ├── images │ │ ├── design-notes.svg │ │ ├── message.svg │ │ ├── online.svg │ │ ├── real-time.svg │ │ └── space.svg │ ├── index.js │ ├── pages │ │ ├── index.js │ │ └── signin.js │ ├── reportWebVitals.js │ └── videos │ │ └── bgvideo.mp4 └── yarn.lock └── img ├── img0.jpg ├── img1.jpg ├── img2.jpg ├── img3.jpg ├── img4a.jpg └── img4b.jpg /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/README.md -------------------------------------------------------------------------------- /application/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/.gitignore -------------------------------------------------------------------------------- /application/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/package-lock.json -------------------------------------------------------------------------------- /application/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/package.json -------------------------------------------------------------------------------- /application/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/public/favicon.ico -------------------------------------------------------------------------------- /application/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/public/index.html -------------------------------------------------------------------------------- /application/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/public/manifest.json -------------------------------------------------------------------------------- /application/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/public/robots.txt -------------------------------------------------------------------------------- /application/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/App.css -------------------------------------------------------------------------------- /application/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/App.js -------------------------------------------------------------------------------- /application/src/components/ButtonElements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/components/ButtonElements.js -------------------------------------------------------------------------------- /application/src/components/footer/FooterElements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/components/footer/FooterElements.js -------------------------------------------------------------------------------- /application/src/components/footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/components/footer/index.js -------------------------------------------------------------------------------- /application/src/components/heroSection/HeroElements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/components/heroSection/HeroElements.js -------------------------------------------------------------------------------- /application/src/components/heroSection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/components/heroSection/index.js -------------------------------------------------------------------------------- /application/src/components/infoSection/InfoElements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/components/infoSection/InfoElements.js -------------------------------------------------------------------------------- /application/src/components/infoSection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/components/infoSection/index.js -------------------------------------------------------------------------------- /application/src/components/infoSectionLight/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/components/infoSectionLight/index.js -------------------------------------------------------------------------------- /application/src/components/infoSectionLight/infoElements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/components/infoSectionLight/infoElements.js -------------------------------------------------------------------------------- /application/src/components/navbar/NavbarElements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/components/navbar/NavbarElements.js -------------------------------------------------------------------------------- /application/src/components/navbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/components/navbar/index.js -------------------------------------------------------------------------------- /application/src/components/services/ServicesElements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/components/services/ServicesElements.js -------------------------------------------------------------------------------- /application/src/components/services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/components/services/index.js -------------------------------------------------------------------------------- /application/src/components/sidebar/SidebarElements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/components/sidebar/SidebarElements.js -------------------------------------------------------------------------------- /application/src/components/sidebar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/components/sidebar/index.js -------------------------------------------------------------------------------- /application/src/components/signin/SigninElements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/components/signin/SigninElements.js -------------------------------------------------------------------------------- /application/src/components/signin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/components/signin/index.js -------------------------------------------------------------------------------- /application/src/images/design-notes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/images/design-notes.svg -------------------------------------------------------------------------------- /application/src/images/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/images/message.svg -------------------------------------------------------------------------------- /application/src/images/online.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/images/online.svg -------------------------------------------------------------------------------- /application/src/images/real-time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/images/real-time.svg -------------------------------------------------------------------------------- /application/src/images/space.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/images/space.svg -------------------------------------------------------------------------------- /application/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/index.js -------------------------------------------------------------------------------- /application/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/pages/index.js -------------------------------------------------------------------------------- /application/src/pages/signin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/pages/signin.js -------------------------------------------------------------------------------- /application/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/reportWebVitals.js -------------------------------------------------------------------------------- /application/src/videos/bgvideo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/src/videos/bgvideo.mp4 -------------------------------------------------------------------------------- /application/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/application/yarn.lock -------------------------------------------------------------------------------- /img/img0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/img/img0.jpg -------------------------------------------------------------------------------- /img/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/img/img1.jpg -------------------------------------------------------------------------------- /img/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/img/img2.jpg -------------------------------------------------------------------------------- /img/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/img/img3.jpg -------------------------------------------------------------------------------- /img/img4a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/img/img4a.jpg -------------------------------------------------------------------------------- /img/img4b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tara-pogancev/react-modern-business-website/HEAD/img/img4b.jpg --------------------------------------------------------------------------------