├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── assets ├── images │ ├── header-bg.jpg │ ├── icon-archer.png │ ├── icon-briefcase.png │ ├── icon-clock.png │ ├── icon-console.png │ ├── icon-diamond.png │ ├── icon-eye.png │ ├── icon-fantasy.png │ ├── icon-heart.png │ ├── icon-paint.png │ ├── icon-phone.png │ ├── icon-plane.png │ ├── icon-star-white.png │ ├── icon-star.png │ ├── logo.png │ ├── pngegg.png │ ├── signature.png │ ├── skills-bg.jpg │ ├── video.mp4 │ ├── work-1.jpg │ ├── work-2.jpg │ ├── work-3.jpg │ ├── work-4.jpg │ ├── work-5.jpg │ ├── work-6.jpg │ ├── work-7.jpg │ └── work-8.jpg └── videos │ └── video.mp4 ├── components ├── AboutUs │ ├── AboutUs.css │ └── AboutUs.jsx ├── Contact │ ├── Contact.css │ └── Contact.jsx ├── Footer │ ├── Footer.css │ └── Footer.jsx ├── Header │ ├── Header.css │ └── Header.jsx ├── Navbar │ ├── Navbar.css │ └── Navbar.jsx ├── Services │ ├── Services.css │ └── Services.jsx ├── Skills │ ├── Skills.css │ └── Skills.jsx ├── Stats │ ├── Stats.css │ └── Stats.jsx ├── Testimonials │ ├── Testimonials.css │ └── Testimonials.jsx ├── Work │ ├── Work.css │ └── Work.jsx └── WorkProcess │ ├── WorkProcess.css │ └── WorkProcess.jsx ├── constants ├── data.js └── images.js ├── index.css └── index.js /.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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Getting Started with Create React App 2 | 3 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). 4 | 5 | ## Available Scripts 6 | 7 | In the project directory, you can run: 8 | 9 | ### `npm start` 10 | 11 | Runs the app in the development mode.\ 12 | Open [http://localhost:3000](http://localhost:3000) to view it in your browser. 13 | 14 | The page will reload when you make changes.\ 15 | You may also see any lint errors in the console. 16 | 17 | ### `npm test` 18 | 19 | Launches the test runner in the interactive watch mode.\ 20 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. 21 | 22 | ### `npm run build` 23 | 24 | Builds the app for production to the `build` folder.\ 25 | It correctly bundles React in production mode and optimizes the build for the best performance. 26 | 27 | The build is minified and the filenames include the hashes.\ 28 | Your app is ready to be deployed! 29 | 30 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. 31 | 32 | ### `npm run eject` 33 | 34 | **Note: this is a one-way operation. Once you `eject`, you can't go back!** 35 | 36 | If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. 37 | 38 | Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. 39 | 40 | You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. 41 | 42 | ## Learn More 43 | 44 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). 45 | 46 | To learn React, check out the [React documentation](https://reactjs.org/). 47 | 48 | ### Code Splitting 49 | 50 | This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) 51 | 52 | ### Analyzing the Bundle Size 53 | 54 | This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) 55 | 56 | ### Making a Progressive Web App 57 | 58 | This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) 59 | 60 | ### Advanced Configuration 61 | 62 | This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) 63 | 64 | ### Deployment 65 | 66 | This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) 67 | 68 | ### `npm run build` fails to minify 69 | 70 | This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify) 71 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "my_app", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@testing-library/jest-dom": "^5.16.4", 7 | "@testing-library/react": "^13.2.0", 8 | "@testing-library/user-event": "^13.5.0", 9 | "react": "^18.1.0", 10 | "react-dom": "^18.1.0", 11 | "react-icons": "^4.3.1", 12 | "react-scripts": "5.0.1", 13 | "react-slick": "^0.29.0", 14 | "redux": "^4.2.0", 15 | "slick-carousel": "^1.8.1", 16 | "video-react": "^0.15.0", 17 | "web-vitals": "^2.1.4" 18 | }, 19 | "scripts": { 20 | "start": "react-scripts start", 21 | "build": "react-scripts build", 22 | "test": "react-scripts test", 23 | "eject": "react-scripts eject" 24 | }, 25 | "eslintConfig": { 26 | "extends": [ 27 | "react-app", 28 | "react-app/jest" 29 | ] 30 | }, 31 | "browserslist": { 32 | "production": [ 33 | ">0.2%", 34 | "not dead", 35 | "not op_mini all" 36 | ], 37 | "development": [ 38 | "last 1 chrome version", 39 | "last 1 firefox version", 40 | "last 1 safari version" 41 | ] 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 17 | 18 | 27 | React App 28 | 29 | 30 | 31 |
32 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | .container{ 2 | max-width: 1177px; 3 | margin: 0 auto; 4 | padding: 0 2rem; 5 | } 6 | .section__padding{ 7 | padding: 10rem 0; 8 | } 9 | .flex{ 10 | display: flex; 11 | } 12 | .flex__center{ 13 | display: flex; 14 | align-items: center; 15 | justify-content: center; 16 | } 17 | .grid{ 18 | display: grid; 19 | } 20 | 21 | /* section */ 22 | .section__title{ 23 | margin-bottom: 4rem; 24 | color: var(--black-color); 25 | font-weight: 600; 26 | letter-spacing: 1px; 27 | font-size: 4rem; 28 | } 29 | .section__padding{ 30 | padding: 10rem 0; 31 | } 32 | 33 | /* texts and paras */ 34 | .para__text{ 35 | line-height: 1.7; 36 | font-weight: 300; 37 | opacity: 0.95; 38 | letter-spacing: 1px; 39 | } 40 | .text__center{ 41 | text-align: center; 42 | } 43 | .text__upper{ 44 | text-transform: uppercase; 45 | } 46 | .text__cap{ 47 | text-transform: capitalize; 48 | } 49 | .text__blue{ 50 | color: var(--robin-blue-color); 51 | } 52 | .text__dark{ 53 | color: var(--black-color); 54 | } 55 | .text__light{ 56 | color: var(--white-color)!important; 57 | } 58 | .text__grey{ 59 | color: var(--grey-color); 60 | } 61 | 62 | /* fonts */ 63 | .fw__2{font-weight: 200;} 64 | .fw__2{font-weight: 300;} 65 | .fw__2{font-weight: 400;} 66 | .fw__2{font-weight: 500;} 67 | .fw__2{font-weight: 600;} 68 | .fw__2{font-weight: 700;} 69 | .fw__2{font-weight: 800;} 70 | 71 | /* bgs and colors */ 72 | .bg__blue{ 73 | background-color: var(--robin-blue-color); 74 | } 75 | .bg__dark{ 76 | background-color: var(--black-color); 77 | } 78 | .bg__light{ 79 | background-color: var(--white-color); 80 | } 81 | .bg__whitesmoke{ 82 | background-color: var(--whitesmoke-color); 83 | } 84 | .bg__grey{ 85 | background-color: var(--grey-color); 86 | } 87 | 88 | /* btns */ 89 | .btn{ 90 | display: inline-block; 91 | min-height: 54px; 92 | line-height: 54px; 93 | padding: 0 4.7rem; 94 | color: var(--white-color); 95 | text-transform: uppercase; 96 | letter-spacing: 1px; 97 | font-size: 1.7rem; 98 | font-weight: 500; 99 | transition: var(--transition); 100 | } 101 | .btn__blue{ 102 | background-color: var(--robin-blue-color); 103 | } 104 | .btn__blue:hover{ 105 | background-color: #0fb9b4; 106 | } 107 | 108 | /* letter spacing */ 109 | .ls__1{ 110 | letter-spacing: 1px; 111 | } 112 | .ls__2{ 113 | letter-spacing: 2px; 114 | } -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import './App.css'; 2 | import Header from "./components/Header/Header"; 3 | import AboutUs from './components/AboutUs/AboutUs'; 4 | import Skills from "./components/Skills/Skills"; 5 | import Stats from "./components/Stats/Stats"; 6 | import Work from "./components/Work/Work"; 7 | import WorkProcess from './components/WorkProcess/WorkProcess'; 8 | import Services from "./components/Services/Services"; 9 | import Testimonials from './components/Testimonials/Testimonials'; 10 | import Contact from "./components/Contact/Contact"; 11 | import Footer from './components/Footer/Footer'; 12 | 13 | function App() { 14 | return ( 15 |
16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 |
27 | ); 28 | } 29 | 30 | export default App; 31 | -------------------------------------------------------------------------------- /src/assets/images/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/header-bg.jpg -------------------------------------------------------------------------------- /src/assets/images/icon-archer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/icon-archer.png -------------------------------------------------------------------------------- /src/assets/images/icon-briefcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/icon-briefcase.png -------------------------------------------------------------------------------- /src/assets/images/icon-clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/icon-clock.png -------------------------------------------------------------------------------- /src/assets/images/icon-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/icon-console.png -------------------------------------------------------------------------------- /src/assets/images/icon-diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/icon-diamond.png -------------------------------------------------------------------------------- /src/assets/images/icon-eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/icon-eye.png -------------------------------------------------------------------------------- /src/assets/images/icon-fantasy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/icon-fantasy.png -------------------------------------------------------------------------------- /src/assets/images/icon-heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/icon-heart.png -------------------------------------------------------------------------------- /src/assets/images/icon-paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/icon-paint.png -------------------------------------------------------------------------------- /src/assets/images/icon-phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/icon-phone.png -------------------------------------------------------------------------------- /src/assets/images/icon-plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/icon-plane.png -------------------------------------------------------------------------------- /src/assets/images/icon-star-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/icon-star-white.png -------------------------------------------------------------------------------- /src/assets/images/icon-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/icon-star.png -------------------------------------------------------------------------------- /src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/logo.png -------------------------------------------------------------------------------- /src/assets/images/pngegg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/pngegg.png -------------------------------------------------------------------------------- /src/assets/images/signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/signature.png -------------------------------------------------------------------------------- /src/assets/images/skills-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/skills-bg.jpg -------------------------------------------------------------------------------- /src/assets/images/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/video.mp4 -------------------------------------------------------------------------------- /src/assets/images/work-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/work-1.jpg -------------------------------------------------------------------------------- /src/assets/images/work-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/work-2.jpg -------------------------------------------------------------------------------- /src/assets/images/work-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/work-3.jpg -------------------------------------------------------------------------------- /src/assets/images/work-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/work-4.jpg -------------------------------------------------------------------------------- /src/assets/images/work-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/work-5.jpg -------------------------------------------------------------------------------- /src/assets/images/work-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/work-6.jpg -------------------------------------------------------------------------------- /src/assets/images/work-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/work-7.jpg -------------------------------------------------------------------------------- /src/assets/images/work-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/images/work-8.jpg -------------------------------------------------------------------------------- /src/assets/videos/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabinmagar/devpoint-react-js-simple-website-for-beginners/d519a43e79f056d3f0b7d80080ca6290946eb5d3/src/assets/videos/video.mp4 -------------------------------------------------------------------------------- /src/components/AboutUs/AboutUs.css: -------------------------------------------------------------------------------- 1 | .about__content img{ 2 | margin: 4rem auto 0 auto; 3 | width: 260px; 4 | } 5 | .about__content p.para__text{ 6 | max-width: 890px; 7 | margin: 0 auto; 8 | } -------------------------------------------------------------------------------- /src/components/AboutUs/AboutUs.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import images from "../../constants/images"; 3 | import "./AboutUs.css"; 4 | 5 | const AboutUs = () => ( 6 |
7 |
8 |
9 |

about us

10 |

Lorem ipsum dolor, sit amet consectetur adipisicing elit. Aliquam vitae reprehenderit veritatis doloribus sint provident vero? Ullam repellendus assumenda voluptate perferendis eligendi! Neque nostrum velit in temporibus, architecto error possimus officiis minus sit ipsa eveniet.

11 | 12 |
13 |
14 |
15 | ) 16 | 17 | export default AboutUs; -------------------------------------------------------------------------------- /src/components/Contact/Contact.css: -------------------------------------------------------------------------------- 1 | .contact__content{ 2 | margin-top: 3.6rem; 3 | } 4 | .contact .para__text{ 5 | max-width: 600px; 6 | margin: 0 auto; 7 | } 8 | .form__control{ 9 | font-size: 1.7rem; 10 | font-family: inherit; 11 | padding: 1.2rem 2rem; 12 | width: 100%; 13 | margin: 1.6rem 0; 14 | } 15 | .form__submit--btn{ 16 | display: block; 17 | margin: 2rem auto 0 auto; 18 | } 19 | 20 | 21 | @media screen and (min-width: 678px){ 22 | .form__elem.form__elem--2{ 23 | display: grid; 24 | grid-template-columns: repeat(2, 1fr); 25 | column-gap: 3.2rem; 26 | } 27 | } 28 | 29 | @media screen and (min-width: 768px){ 30 | .contact__content form{ 31 | max-width: 680px; 32 | margin: 0 auto; 33 | } 34 | } -------------------------------------------------------------------------------- /src/components/Contact/Contact.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "./Contact.css"; 3 | 4 | const Contact = () => { 5 | return ( 6 |
7 |
8 |

Need a Project?

9 |

Let us know what you're looking for in an agency. We'll take a look and see if this could be the start of something beautiful.

10 | 11 |
12 |
13 |
14 | 15 | 16 |
17 |
18 | 19 |
20 |
21 | 22 |
23 | 24 |
25 |
26 |
27 |
28 | ) 29 | } 30 | 31 | export default Contact; -------------------------------------------------------------------------------- /src/components/Footer/Footer.css: -------------------------------------------------------------------------------- 1 | .footer__navlink{ 2 | font-size: 2rem; 3 | display: block; 4 | margin-bottom: 1rem; 5 | } 6 | .footer__content{ 7 | row-gap: 5rem; 8 | } 9 | .footer__title{ 10 | margin-bottom: 1.6rem; 11 | } 12 | .footer__links li{ 13 | margin-bottom: 1rem; 14 | } 15 | .footer__links li a{ 16 | transition: var(--transition); 17 | } 18 | .footer__links li a:hover{ 19 | color: var(--robin-blue-color); 20 | } 21 | 22 | @media screen and (min-width: 768px){ 23 | .footer__content{ 24 | grid-template-columns: repeat(2, 1fr); 25 | column-gap: 4rem; 26 | } 27 | } 28 | 29 | @media screen and (min-width: 992px){ 30 | .footer__content{ 31 | grid-template-columns: repeat(3, 1fr); 32 | } 33 | } 34 | 35 | @media screen and (min-width: 1200px) { 36 | .footer__content{ 37 | grid-template-columns: 2fr 1fr 1fr 1fr 1fr; 38 | text-align: left; 39 | } 40 | } -------------------------------------------------------------------------------- /src/components/Footer/Footer.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "./Footer.css"; 3 | 4 | const Footer = () => { 5 | return ( 6 | 48 | ) 49 | } 50 | 51 | export default Footer; -------------------------------------------------------------------------------- /src/components/Header/Header.css: -------------------------------------------------------------------------------- 1 | .header{ 2 | min-height: 100vh; 3 | } 4 | .header__content{ 5 | min-height: calc(100vh - 106px); 6 | flex-direction: column; 7 | } 8 | .header__title{ 9 | font-size: 4.1rem; 10 | line-height: 1.2; 11 | } 12 | .header__content .para__text{ 13 | padding: 3.6rem 0; 14 | max-width: 600px; 15 | margin: 0 auto; 16 | } 17 | 18 | @media(min-width: 992px){ 19 | .header__content{ 20 | flex-direction: row; 21 | } 22 | .header__content--right{ 23 | text-align: left; 24 | width: 50%; 25 | } 26 | .header__content--left{ 27 | width: 50%; 28 | } 29 | .header__content--right .para__text{ 30 | margin-left: 0; 31 | } 32 | } -------------------------------------------------------------------------------- /src/components/Header/Header.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "./Header.css"; 3 | import Navbar from "../Navbar/Navbar"; 4 | import images from "../../constants/images"; 5 | 6 | const Header = () => ( 7 |
10 | 11 | 12 |
13 |
14 |
15 |
16 |

We Design and Develop

17 |

We are a new design studio based in USA. We have over 20 years of combined experience, and know a thing or two about designing websites and mobile apps.

18 | contact us 19 |
20 |
21 |
22 |
23 | ) 24 | 25 | export default Header; -------------------------------------------------------------------------------- /src/components/Navbar/Navbar.css: -------------------------------------------------------------------------------- 1 | .navbar{ 2 | padding: 3.8rem 0; 3 | } 4 | .navbar__brand img{ 5 | width: 150px; 6 | } 7 | .brand__and__toggler{ 8 | align-items: center; 9 | justify-content: space-between; 10 | width: 100%; 11 | } 12 | .navbar__collapse{ 13 | display: none; 14 | } 15 | .navbar__collapse .nav__link{ 16 | letter-spacing: 1px; 17 | transition: var(--transition); 18 | } 19 | .navbar__collapse .nav__link:hover, .nav__link{ 20 | color: var(--robin-blue-color); 21 | } 22 | 23 | /* smallscreen */ 24 | .navbar__smallscreen{ 25 | position: fixed; 26 | right: 0; 27 | top: 0; 28 | background-color: var(--robin-blue-color); 29 | height: 100%; 30 | width: 100%; 31 | padding: 3rem; 32 | box-shadow: -3px 0 14px 0 rgba(0, 0, 0, 0.4); 33 | z-index: 999; 34 | transition: var(--transition); 35 | } 36 | .navbar__close--btn{ 37 | position: absolute; 38 | right: 2rem; 39 | top: 2rem; 40 | cursor: pointer; 41 | transition: var(--transition); 42 | } 43 | .navbar__close--btn:hover{ 44 | opacity: 0.9; 45 | } 46 | .navbar__smallscreen .nav__link{ 47 | transition: var(--transition); 48 | letter-spacing: 1px; 49 | font-size: 1.8rem; 50 | } 51 | .navbar__smallscreen .nav__link:hover{ 52 | padding-left: 1rem; 53 | } 54 | .navbar__smallscreen .nav__item{ 55 | margin: 2rem 0; 56 | } 57 | 58 | @media(min-width: 578px){ 59 | .navbar__smallscreen{ 60 | width: 300px; 61 | } 62 | } 63 | 64 | @media(min-width: 992px){ 65 | .navbar__open--btn{ 66 | display: none; 67 | } 68 | .navbar__collapse{ 69 | display: flex; 70 | } 71 | .navbar__collapse .navbar__nav{ 72 | display: flex; 73 | align-items: center; 74 | } 75 | .navbar__collapse .nav__item{ 76 | margin-left: 3.8rem; 77 | } 78 | .navbar__smallscreen{ 79 | display: none; 80 | } 81 | } -------------------------------------------------------------------------------- /src/components/Navbar/Navbar.jsx: -------------------------------------------------------------------------------- 1 | import React, {useState} from "react"; 2 | import images from "../../constants/images"; 3 | import "./Navbar.css"; 4 | import {FaBars, FaTimes} from "react-icons/fa"; 5 | 6 | const Navbar = () => { 7 | const [toggleMenu, setToggleMenu] = useState(false); 8 | 9 | return ( 10 | 79 | ) 80 | } 81 | 82 | export default Navbar; -------------------------------------------------------------------------------- /src/components/Services/Services.css: -------------------------------------------------------------------------------- 1 | .services__content{ 2 | gap: 4rem; 3 | } 4 | .services__content--item{ 5 | padding: 2rem; 6 | } 7 | .services__content--item .icon{ 8 | width: 60px; 9 | margin: 0 auto; 10 | opacity: 0.7; 11 | } 12 | .services__content--item .text{ 13 | margin: 2rem 0; 14 | opacity: 0.8; 15 | } 16 | .services__content--item .para__text{ 17 | max-width: 400px; 18 | margin: 0 auto; 19 | } 20 | 21 | @media screen and (min-width: 768px){ 22 | .services__content{ 23 | grid-template-columns: repeat(2, 1fr); 24 | } 25 | } 26 | 27 | @media screen and (min-width: 992px){ 28 | .services__content{ 29 | grid-template-columns: repeat(3, 1fr); 30 | } 31 | } 32 | 33 | @media screen and (min-width: 1200px) { 34 | .services__content{ 35 | grid-template-columns: repeat(4, 1fr); 36 | } 37 | } -------------------------------------------------------------------------------- /src/components/Services/Services.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import data from "../../constants/data"; 3 | import "./Services.css"; 4 | 5 | const Services = () => { 6 | return ( 7 |
8 |
9 |
10 | { 11 | data.services.map((service, index) => { 12 | return ( 13 |
14 | 15 |

{service.title}

16 |

{service.text}

17 |
18 | ) 19 | }) 20 | } 21 |
22 |
23 |
24 | ) 25 | } 26 | 27 | export default Services; -------------------------------------------------------------------------------- /src/components/Skills/Skills.css: -------------------------------------------------------------------------------- 1 | .skills__item--title{ 2 | margin-bottom: 2rem; 3 | display: block; 4 | } 5 | .skills__item--progressbar{ 6 | height: 4px; 7 | width: 100%; 8 | position: relative; 9 | background-color: #d8d8d8; 10 | margin-bottom: 4rem; 11 | } 12 | .skills__item--progressbar div{ 13 | position: absolute; 14 | left: 0; 15 | top: 0; 16 | bottom: 0; 17 | background-color: var(--robin-blue-color); 18 | } 19 | .skills__item{ 20 | max-width: 600px; 21 | } 22 | 23 | @media screen and (min-width: 992px){ 24 | .skills__content{ 25 | grid-template-columns: repeat(2, 1fr); 26 | } 27 | } -------------------------------------------------------------------------------- /src/components/Skills/Skills.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "./Skills.css"; 3 | import images from "../../constants/images"; 4 | import data from "../../constants/data"; 5 | 6 | const Skills = () => { 7 | return ( 8 |
11 |
12 |

13 | Professional Skills 14 |

15 |
16 |
17 | { 18 | data.skills.map((skill, index) => { 19 | return ( 20 |
21 |
22 | {skill.title} 23 |   24 | ({skill.value}) 25 |
26 |
27 |
28 |
29 |
30 | ) 31 | }) 32 | } 33 |
34 |
35 |
36 |
37 | ) 38 | } 39 | 40 | export default Skills; -------------------------------------------------------------------------------- /src/components/Stats/Stats.css: -------------------------------------------------------------------------------- 1 | .stats__content{ 2 | gap: 6rem; 3 | } 4 | .stats__item--left .img{ 5 | width: 60px; 6 | margin: 0 auto; 7 | margin-bottom: 2rem; 8 | } 9 | .stats__item--right .value{ 10 | display: block; 11 | margin-bottom: 0.6rem; 12 | } 13 | 14 | 15 | @media screen and (min-width: 768px){ 16 | .stats__content{ 17 | grid-template-columns: repeat(2, 1fr); 18 | } 19 | } 20 | 21 | @media screen and (min-width: 992px){ 22 | .stats__content{ 23 | grid-template-columns: repeat(4, 1fr); 24 | column-gap: 2rem; 25 | } 26 | .stats__item{ 27 | text-align: left; 28 | align-items: center; 29 | display: flex; 30 | } 31 | .stats__item .img{ 32 | margin-bottom: 0; 33 | margin-right: 2rem; 34 | width: 40px; 35 | } 36 | } -------------------------------------------------------------------------------- /src/components/Stats/Stats.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "./Stats.css"; 3 | import data from "../../constants/data"; 4 | 5 | const Stats = () => { 6 | return ( 7 |
8 |
9 |
10 | { 11 | data.stats.map((stat, index) => { 12 | return ( 13 |
14 |
15 | 16 |
17 |
18 | {stat.value} 19 | {stat.title} 20 |
21 |
22 | ) 23 | }) 24 | } 25 |
26 |
27 |
28 | ) 29 | } 30 | 31 | export default Stats; -------------------------------------------------------------------------------- /src/components/Testimonials/Testimonials.css: -------------------------------------------------------------------------------- 1 | .slick-dots li button::before{ 2 | font-size: 15px!important; 3 | color: #fff!important; 4 | } 5 | .testimonials__item{ 6 | max-width: 700px; 7 | margin: 0 auto; 8 | } 9 | .testimonials__item .text{ 10 | font-size: 1.4rem; 11 | margin: 2rem 0; 12 | } -------------------------------------------------------------------------------- /src/components/Testimonials/Testimonials.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import data from "../../constants/data"; 3 | import "./Testimonials.css"; 4 | import {FaQuoteLeft, FaQuoteRight} from "react-icons/fa"; 5 | // slick slider 6 | import Slider from 'react-slick'; 7 | import "slick-carousel/slick/slick.css"; 8 | import "slick-carousel/slick/slick-theme.css"; 9 | 10 | const Testimonials = () => { 11 | let settings = { 12 | dots: true, 13 | autoplay: true, 14 | infinite: true, 15 | speed: 500, 16 | slidesToShow: 1, 17 | slidesToScroll: 1, 18 | arrows: false 19 | }; 20 | 21 | return( 22 |
23 |
24 |
25 | 26 | { 27 | data.testimonials.map((testimonial, index) => { 28 | return ( 29 |
30 |

31 | 32 |   33 | {testimonial.text}   34 |

35 |

{testimonial.name}

36 |
37 | ) 38 | }) 39 | } 40 |
41 |
42 |
43 |
44 | ) 45 | } 46 | 47 | export default Testimonials; -------------------------------------------------------------------------------- /src/components/Work/Work.css: -------------------------------------------------------------------------------- 1 | .work__content--item{ 2 | position: relative; 3 | } 4 | .work__content--item::after{ 5 | content: ""; 6 | position: absolute; 7 | top: 0; 8 | left: 0; 9 | width: 100%; 10 | height: 100%; 11 | background-color: rgba(0, 0, 0, 0.8); 12 | opacity: 0; 13 | transition: var(--transition); 14 | } 15 | .work__content--item .icon{ 16 | position: absolute; 17 | top: 50%; 18 | left: 50%; 19 | transform: translate(-50%, -50%); 20 | opacity: 0; 21 | transition: var(--transition); 22 | } 23 | .work__content--item .icon img{ 24 | width: 40px; 25 | } 26 | .work__content--item:hover .icon{ 27 | opacity: 1; 28 | z-index: 1; 29 | } 30 | .work__content--item:hover::after{ 31 | opacity: 1; 32 | } 33 | 34 | @media screen and (min-width: 678px){ 35 | .work__content{ 36 | grid-template-columns: repeat(2, 1fr); 37 | } 38 | } 39 | 40 | @media screen and (min-width: 800px){ 41 | .work__content{ 42 | grid-template-columns: repeat(3, 1fr); 43 | } 44 | } 45 | 46 | @media screen and (min-width: 1200px){ 47 | .work__content{ 48 | grid-template-columns: repeat(4, 1fr); 49 | } 50 | } 51 | 52 | .image__modal{ 53 | position: fixed; 54 | top: 0; 55 | left: 0; 56 | width: 100%; 57 | height: 100%; 58 | background-color: rgba(0, 0, 0, 0.8); 59 | z-index: 5; 60 | transition: var(--transition); 61 | visibility: hidden; 62 | opacity: 0; 63 | } 64 | 65 | .image__modal__show{ 66 | visibility: visible; 67 | opacity: 1; 68 | } 69 | .image__modal--content{ 70 | position: absolute; 71 | top: 50%; 72 | left: 50%; 73 | transform: translate(-50%, -50%); 74 | max-width: 720px; 75 | min-width: 350px; 76 | width: 100%; 77 | } 78 | .image__modal--content img{ 79 | width: 100%; 80 | } 81 | .modal__close--btn{ 82 | position: absolute; 83 | right: -15px; 84 | top: -15px; 85 | border-radius: 50%; 86 | cursor: pointer; 87 | transition: var(--transition); 88 | } 89 | .modal__close--btn:hover{ 90 | color: var(--dark-color)!important; 91 | } -------------------------------------------------------------------------------- /src/components/Work/Work.jsx: -------------------------------------------------------------------------------- 1 | import React, {useState} from "react"; 2 | import data from "../../constants/data"; 3 | import images from "../../constants/images"; 4 | import "./Work.css"; 5 | import {FaTimesCircle} from "react-icons/fa"; 6 | 7 | const Work = () => { 8 | 9 | const [imageModal, setImageModal] = useState(false); 10 | const [imageSrc, setImageSrc] = useState(""); 11 | 12 | const setImageOnModal = (src) => { 13 | setImageSrc(src); 14 | setImageModal(true); 15 | } 16 | 17 | return ( 18 |
19 |
20 |
21 | setImageModal(false)} /> 22 | 23 |
24 |
25 | 26 |
27 | { 28 | data.works.map((work, index) => { 29 | return ( 30 |
setImageOnModal(work.img)}> 31 | 32 |
33 | 34 |
35 |
36 | ) 37 | }) 38 | } 39 |
40 |
41 | ) 42 | } 43 | 44 | export default Work; -------------------------------------------------------------------------------- /src/components/WorkProcess/WorkProcess.css: -------------------------------------------------------------------------------- 1 | .vid__container{ 2 | margin-top: 40px; 3 | } -------------------------------------------------------------------------------- /src/components/WorkProcess/WorkProcess.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "./WorkProcess.css"; 3 | import WorkProcessVid from "../../assets/videos/video.mp4"; 4 | import {ControlBar, Player, PlayToggle} from 'video-react'; 5 | import 'video-react/dist/video-react.css'; 6 | 7 | const WorkProcess = () => { 8 | return ( 9 |
10 |
11 |
12 |

Our work process

13 |

Lorem, ipsum dolor sit amet consectetur adipisicing elit. Similique, autem perferendis? Tenetur iusto deserunt itaque nisi fugiat id possimus odio.

14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 |
22 |
23 |
24 |
25 | ) 26 | } 27 | 28 | export default WorkProcess; -------------------------------------------------------------------------------- /src/constants/data.js: -------------------------------------------------------------------------------- 1 | import images from "./images"; 2 | 3 | // skills 4 | const skills = [ 5 | { 6 | title: "UI/UX DESIGN", 7 | value: "80%" 8 | }, 9 | { 10 | title: "WEB DEVELOPMENT", 11 | value: "75%" 12 | }, 13 | { 14 | title: "APP DEVELOPMENT", 15 | value: "45%" 16 | }, 17 | { 18 | title: "MARKETING", 19 | value: "15%" 20 | }, 21 | ]; 22 | 23 | // stats 24 | const stats = [ 25 | { 26 | img: `${images.icon_briefcase}`, 27 | value: 548, 28 | title: "projects completed" 29 | }, 30 | { 31 | img: `${images.icon_clock}`, 32 | value: 1465, 33 | title: "working hours" 34 | }, 35 | { 36 | img: `${images.icon_star_white}`, 37 | value: 612, 38 | title: "positive feedbacks" 39 | }, 40 | { 41 | img: `${images.icon_heart}`, 42 | value: 735, 43 | title: "happy clients" 44 | }, 45 | ]; 46 | 47 | // works 48 | const works = [ 49 | { 50 | img: `${images.work_1}` 51 | }, 52 | { 53 | img: `${images.work_2}` 54 | }, 55 | { 56 | img: `${images.work_3}` 57 | }, 58 | { 59 | img: `${images.work_4}` 60 | }, 61 | { 62 | img: `${images.work_5}` 63 | }, 64 | { 65 | img: `${images.work_6}` 66 | }, 67 | { 68 | img: `${images.work_7}` 69 | }, 70 | { 71 | img: `${images.work_8}` 72 | } 73 | ] 74 | 75 | // services 76 | const services = [ 77 | { 78 | img: `${images.icon_diamond}`, 79 | title: "UI / UX DESIGN", 80 | text: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do.' 81 | }, 82 | { 83 | img: `${images.icon_archer}`, 84 | title: "WEB DEVELOPMENT", 85 | text: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do.' 86 | }, 87 | { 88 | img: `${images.icon_phone}`, 89 | title: "APP / MOBILE", 90 | text: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do.' 91 | }, 92 | { 93 | img: `${images.icon_console}`, 94 | title: "GAME DESIGN", 95 | text: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do.' 96 | }, 97 | { 98 | img: `${images.icon_plane}`, 99 | title: "SEO / MARKETING", 100 | text: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do.' 101 | }, 102 | { 103 | img: `${images.icon_star}`, 104 | title: "PHOTOGRAPHY", 105 | text: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do.' 106 | }, 107 | { 108 | img: `${images.icon_fantasy}`, 109 | title: "GRAPHIC DESIGN", 110 | text: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do.' 111 | }, 112 | { 113 | img: `${images.icon_paint}`, 114 | title: "ILLUSTRATIONS", 115 | text: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do.' 116 | } 117 | ]; 118 | 119 | // testimonials 120 | const testimonials = [ 121 | { 122 | name: "Christine Troughton, BPTC Officer", 123 | text: "The staff and support are second to none. They are polished, proficient, accessible and patient.", 124 | }, 125 | { 126 | name: "Michael Hopkins", 127 | text: "Outstanding job and exceeded all expectations. It was a pleasure to work with them on a sizable first project and am looking forward to start the next one asap." 128 | }, 129 | { 130 | name: "Terry Overacker", 131 | text: "We completed our product website with Dev.Point and are so excited to have it live!! It is so professionally done and eye appealing, not to mention how great it looks and works. We love how easy it is to make changes ourselves, yet know we have the support when/if we need it." 132 | }, 133 | { 134 | name: "Tim K. & Kristen H.", 135 | text: "When you choose Dev.Point you get a wonderful, professional team with innovative ideas, awesome customer service, and exactly what you're looking for. It took the ideas that we had and put them perfecly on the web." 136 | } 137 | ]; 138 | 139 | export default {skills, stats, works, services, testimonials}; 140 | -------------------------------------------------------------------------------- /src/constants/images.js: -------------------------------------------------------------------------------- 1 | import header_bg from "../assets/images/header-bg.jpg"; 2 | import logo from "../assets/images/logo.png"; 3 | import signature from "../assets/images/signature.png"; 4 | import icon_archer from "../assets/images/icon-archer.png"; 5 | import icon_briefcase from "../assets/images/icon-briefcase.png"; 6 | import icon_clock from "../assets/images/icon-clock.png"; 7 | import icon_console from "../assets/images/icon-console.png"; 8 | import icon_diamond from "../assets/images/icon-diamond.png"; 9 | import icon_eye from "../assets/images/icon-eye.png"; 10 | import icon_fantasy from "../assets/images/icon-fantasy.png"; 11 | import icon_heart from "../assets/images/icon-heart.png"; 12 | import icon_paint from "../assets/images/icon-paint.png"; 13 | import icon_phone from "../assets/images/icon-phone.png"; 14 | import icon_plane from "../assets/images/icon-plane.png"; 15 | import icon_star from "../assets/images/icon-star.png"; 16 | import icon_star_white from "../assets/images/icon-star-white.png"; 17 | 18 | import skills_bg from "../assets/images/skills-bg.jpg"; 19 | import work_1 from "../assets/images/work-1.jpg"; 20 | import work_2 from "../assets/images/work-2.jpg"; 21 | import work_3 from "../assets/images/work-3.jpg"; 22 | import work_4 from "../assets/images/work-4.jpg"; 23 | import work_5 from "../assets/images/work-5.jpg"; 24 | import work_6 from "../assets/images/work-6.jpg"; 25 | import work_7 from "../assets/images/work-7.jpg"; 26 | import work_8 from "../assets/images/work-8.jpg"; 27 | 28 | export default{ 29 | header_bg, 30 | logo, 31 | signature, 32 | icon_archer, 33 | icon_briefcase, 34 | icon_clock, 35 | icon_console, 36 | icon_diamond, 37 | icon_eye, 38 | icon_fantasy, 39 | icon_heart, 40 | icon_paint, 41 | icon_phone, 42 | icon_plane, 43 | icon_star, 44 | icon_star_white, 45 | skills_bg, 46 | work_1, 47 | work_2, 48 | work_3, 49 | work_4, 50 | work_5, 51 | work_6, 52 | work_7, 53 | work_8 54 | }; -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap'); 2 | 3 | :root{ 4 | --font-base: 'Poppins', sans-serif; 5 | --robin-blue-color: #10c9c3; 6 | --black-color: #141414; 7 | --grey-color: #8e8e8e; 8 | --white-color: #fff; 9 | --whitesmoke-color: #f5f5f5; 10 | --transition: all 300ms ease-in-out; 11 | } 12 | 13 | *{ 14 | box-sizing: border-box; 15 | padding: 0; 16 | margin: 0; 17 | scroll-behavior: smooth; 18 | } 19 | html{ 20 | font-size: 10px; 21 | } 22 | body{ 23 | font-size: 1.8rem; 24 | line-height: 1.6; 25 | font-family: var(--font-base); 26 | color: var(--black-color); 27 | } 28 | 29 | a{ 30 | color: unset; 31 | text-decoration: none; 32 | } 33 | ul{ 34 | list-style-type: none; 35 | } 36 | img{ 37 | width: 100%; 38 | display: block; 39 | } 40 | button{ 41 | cursor: pointer; 42 | outline: 0; 43 | border: none; 44 | background-color: transparent; 45 | font-family: inherit; 46 | font-size: 1.8rem; 47 | } 48 | input, textarea{ 49 | outline: 0; 50 | border: none; 51 | resize: none; 52 | } -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom/client'; 3 | import './index.css'; 4 | import App from './App'; 5 | 6 | const root = ReactDOM.createRoot(document.getElementById('root')); 7 | root.render( 8 | 9 | 10 | 11 | ); 12 | 13 | --------------------------------------------------------------------------------