├── public ├── styles.css ├── robots.txt ├── favicon.ico ├── logo192.png ├── logo512.png ├── manifest.json └── index.html ├── src ├── components │ ├── messageBox.jpg │ ├── news.js │ ├── careers.js │ ├── clients.js │ ├── footer.js │ ├── about.js │ ├── contact.js │ ├── service.js │ └── home.js ├── App.css ├── setupTests.js ├── header.css ├── reportWebVitals.js ├── index.js ├── App.js ├── Header.js └── styles.js ├── .gitignore ├── debug.log ├── package.json ├── README.md └── .eslintcache /public/styles.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background:linear-gradient(550deg,#fff,#a3a3a3) 3 | } 4 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devcreatives/DevCreatives-Website/master/public/favicon.ico -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devcreatives/DevCreatives-Website/master/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devcreatives/DevCreatives-Website/master/public/logo512.png -------------------------------------------------------------------------------- /src/components/messageBox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devcreatives/DevCreatives-Website/master/src/components/messageBox.jpg -------------------------------------------------------------------------------- /src/components/news.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | 3 | function news() { 4 | return ( 5 |
6 | This is News Page 7 | 8 |
9 | ) 10 | } 11 | 12 | export default news; 13 | -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | #logoTextOnContactPage { 2 | padding-top: 25px; 3 | padding-bottom: 35px; 4 | box-shadow: 0 5px 5px -4px grey; 5 | } 6 | 7 | .contactPageBottomContent { 8 | padding-top: 50px; 9 | padding-bottom: 35px; 10 | } 11 | -------------------------------------------------------------------------------- /src/components/careers.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | 3 | function careers() { 4 | return ( 5 |
6 | This is Careers Page 7 | 8 |
9 | ) 10 | } 11 | 12 | export default careers; 13 | -------------------------------------------------------------------------------- /src/components/clients.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | 3 | function clients() { 4 | return ( 5 |
6 | This is Clients Page 7 | 8 |
9 | ) 10 | } 11 | 12 | export default clients; 13 | -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom'; 6 | -------------------------------------------------------------------------------- /src/header.css: -------------------------------------------------------------------------------- 1 | 2 | a{ 3 | text-decoration: none; 4 | } 5 | ul{ 6 | display: flex; 7 | flex-direction: row; 8 | list-style: none; 9 | padding:0px; 10 | align-items: inherit; 11 | 12 | } 13 | 14 | li{ 15 | padding :15px; 16 | margin:auto; 17 | 18 | } -------------------------------------------------------------------------------- /.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/reportWebVitals.js: -------------------------------------------------------------------------------- 1 | const reportWebVitals = onPerfEntry => { 2 | if (onPerfEntry && onPerfEntry instanceof Function) { 3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { 4 | getCLS(onPerfEntry); 5 | getFID(onPerfEntry); 6 | getFCP(onPerfEntry); 7 | getLCP(onPerfEntry); 8 | getTTFB(onPerfEntry); 9 | }); 10 | } 11 | }; 12 | 13 | export default reportWebVitals; 14 | -------------------------------------------------------------------------------- /debug.log: -------------------------------------------------------------------------------- 1 | [0104/105701.416:ERROR:directory_reader_win.cc(43)] FindFirstFile: The system cannot find the path specified. (0x3) 2 | [0125/192244.234:ERROR:directory_reader_win.cc(43)] FindFirstFile: The system cannot find the path specified. (0x3) 3 | [0125/222729.740:ERROR:directory_reader_win.cc(43)] FindFirstFile: The system cannot find the path specified. (0x3) 4 | [0126/171751.669:ERROR:directory_reader_win.cc(43)] FindFirstFile: The system cannot find the path specified. (0x3) 5 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | 4 | import App from './App'; 5 | import reportWebVitals from './reportWebVitals'; 6 | 7 | ReactDOM.render( 8 | 9 | 10 | , 11 | document.getElementById('root') 12 | ); 13 | 14 | // If you want to start measuring performance in your app, pass a function 15 | // to log results (for example: reportWebVitals(console.log)) 16 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals 17 | reportWebVitals(); 18 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/components/footer.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import {Grid, Typography,Container} from '@material-ui/core' 3 | import useStyles from '../styles' 4 | 5 | function Footer() { 6 | 7 | const classes = useStyles(); 8 | 9 | return ( 10 |
11 | 12 | 13 | 14 | 15 | Copyright © 2021 DevCreatives++. Designed by Muzamil Nawaz 16 | 17 | 18 | Terms & Conditions | Privacy Policy | Sitemap 19 | 20 | 21 | 22 | 23 | 24 |
25 | ) 26 | } 27 | 28 | export default Footer 29 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "devcreativeswebsite", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@material-ui/core": "^4.11.2", 7 | "@testing-library/jest-dom": "^5.11.4", 8 | "@testing-library/react": "^11.1.0", 9 | "@testing-library/user-event": "^12.1.10", 10 | "bootstrap": "^4.5.3", 11 | "jquery": "^3.5.1", 12 | "react": "^17.0.1", 13 | "react-bootstrap": "^1.4.0", 14 | "react-dom": "^17.0.1", 15 | "react-router-dom": "^5.2.0", 16 | "react-scripts": "4.0.1", 17 | "web-vitals": "^0.2.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 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import './App.css'; 3 | import Header from './Header.js' 4 | import {Container} from '@material-ui/core' 5 | import useStyles from './styles' 6 | import {BrowserRouter as Router,Route} from 'react-router-dom' 7 | 8 | import ServiceComponent from './components/service' 9 | import HomeComponent from './components/home' 10 | import AboutComponent from './components/about' 11 | import CareersComponent from './components/careers' 12 | import ClientsComponent from './components/clients' 13 | import NewsComponent from './components/news' 14 | import ContactComponent from './components/contact' 15 | import "bootstrap/dist/css/bootstrap.min.css"; 16 | import "bootstrap/dist/js/bootstrap.min.js"; 17 | import Footer from './components/footer' 18 | 19 | 20 | function App() { 21 | const classes = useStyles(); 22 | 23 | return ( 24 | 25 | 26 | {/* Header */} 27 |
28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 |