├── public ├── robots.txt ├── favicon.ico ├── logo192.png ├── logo512.png ├── images │ ├── hero.png │ ├── image 1.png │ ├── image 2.png │ ├── image 3.png │ ├── hero-guy-1.png │ ├── hero-pattern-bg.png │ ├── hero-pattern-bg-lg.png │ ├── companies │ │ ├── netflix.svg │ │ ├── tesla.svg │ │ ├── apple.svg │ │ ├── amazon.svg │ │ ├── facebook.svg │ │ ├── youtube.svg │ │ ├── airbnb.svg │ │ ├── microsoft.svg │ │ ├── disney.svg │ │ ├── google.svg │ │ └── coca-cola.svg │ ├── logo.svg │ └── content │ │ ├── lost.svg │ │ ├── landing-page.svg │ │ ├── undraw_To_the_stars_qhyy.svg │ │ ├── alien.svg │ │ ├── rocket.svg │ │ └── ecommerce.svg ├── manifest.json └── index.html ├── src ├── index.js ├── data │ ├── NavbarData.js │ ├── ClientsData.js │ ├── FeaturesData.js │ └── HeroData.js ├── App.js ├── pages │ └── HomePage.js ├── components │ ├── Form │ │ ├── validateForm.js │ │ ├── FormStyles.js │ │ └── Form.js │ ├── Modal │ │ ├── ModalStyles.js │ │ └── Modal.js │ ├── Features │ │ ├── Features.js │ │ └── FeaturesStyles.js │ ├── Clients │ │ ├── Clients.js │ │ └── ClientsStyles.js │ ├── Footer │ │ ├── Footer.js │ │ └── FooterStyles.js │ ├── Navbar │ │ ├── Navbar.js │ │ └── NavbarStyles.js │ ├── Hero │ │ ├── Hero.js │ │ └── HeroStyles.js │ └── Content │ │ ├── Content.js │ │ └── ContentStyles.js └── globalStyles.js ├── .gitignore ├── package.json └── README.md /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itSatoriCode/react-design-website/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itSatoriCode/react-design-website/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itSatoriCode/react-design-website/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/images/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itSatoriCode/react-design-website/HEAD/public/images/hero.png -------------------------------------------------------------------------------- /public/images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itSatoriCode/react-design-website/HEAD/public/images/image 1.png -------------------------------------------------------------------------------- /public/images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itSatoriCode/react-design-website/HEAD/public/images/image 2.png -------------------------------------------------------------------------------- /public/images/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itSatoriCode/react-design-website/HEAD/public/images/image 3.png -------------------------------------------------------------------------------- /public/images/hero-guy-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itSatoriCode/react-design-website/HEAD/public/images/hero-guy-1.png -------------------------------------------------------------------------------- /public/images/hero-pattern-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itSatoriCode/react-design-website/HEAD/public/images/hero-pattern-bg.png -------------------------------------------------------------------------------- /public/images/hero-pattern-bg-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itSatoriCode/react-design-website/HEAD/public/images/hero-pattern-bg-lg.png -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import App from './App'; 4 | 5 | ReactDOM.render( 6 | <> 7 | 8 | , 9 | document.getElementById('root') 10 | ); 11 | -------------------------------------------------------------------------------- /src/data/NavbarData.js: -------------------------------------------------------------------------------- 1 | export const navbarData = [ 2 | { 3 | to: 'about', 4 | text: 'About', 5 | }, 6 | { 7 | to: 'clients', 8 | text: 'Clients', 9 | }, 10 | { 11 | to: 'projects', 12 | text: 'Projects', 13 | }, 14 | ]; 15 | -------------------------------------------------------------------------------- /src/data/ClientsData.js: -------------------------------------------------------------------------------- 1 | export const clientsData = [ 2 | [{ name: 'airbnb' }], 3 | [{ name: 'amazon' }, { name: 'apple' }], 4 | [{ name: 'coca-cola' }, { name: 'youtube' }, { name: 'google' }], 5 | [{ name: 'microsoft' }, { name: 'netflix' }], 6 | [{ name: 'facebook' }], 7 | ]; 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import GlobalStyle from './globalStyles'; 3 | import HomePage from './pages/HomePage'; 4 | import { BrowserRouter as Router, Switch, Route } from 'react-router-dom'; 5 | import Navbar from './components/Navbar/Navbar'; 6 | import Footer from './components/Footer/Footer'; 7 | 8 | function App() { 9 | return ( 10 | 11 | 12 | 13 | 14 | 15 | 16 |