├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public ├── animate.css ├── data.json ├── favicon.ico ├── images │ ├── 618b5b33c589e179c2c8b27c_Shiloh New Logo-01-p-3200.png │ ├── 6232406724bd9b36622aed48_image 3 (Traced).svg │ ├── 623240674411e07510215b6f_image 2 (Traced).svg │ ├── 62324067d42bfc263ee547ff_image 4 (Traced).svg │ ├── 623503637e979197919c6c03_Topology-1 (1).svg │ ├── 623506fac432155edb494f48_Topology-2 (1).svg │ ├── 623a183aa76fb537cbc5dc0e_Group 8-p-500.png │ ├── 6296648937731de4e98d9a5a_zapier-seeklogo.com 2.svg │ ├── 62966934fc028e3715017571_undraw_mobile_development_re_wwsn 1.svg │ ├── 62966cbb57bfa16e79fe8406_undraw_data_re_80ws 1 (1).svg │ ├── 62966cd0f71f4f702ab6febd_undraw_asset_selection_re_k5fj 1.svg │ ├── 6297dd8a74746c61110b1aaa_undraw_team_collaboration_re_ow29 1 (2).svg │ ├── pexels-ellie-burgin-3780365.jpg │ └── slider │ │ ├── 6233919229ea6779ed90baf2_VanguardDesignCo-ShilohCreative.jpg │ │ ├── 623391a13c260eca5a41c7cc_BelloBeauty-ShilohCreative.jpg │ │ ├── 623391b6028cc04e169667de_CodeSee-ShilohCreative.jpg │ │ ├── 623391de29ea67625d90bc28_CodeSeeLearn-ShilohCreative.jpg │ │ ├── 6233964d458d840baa74c42f_LandingPage-ShilohCreative.jpg │ │ ├── 6233990417440f78c3061103_LandingPage-ShilohCreative (1).jpg │ │ ├── 629a744633cf80efdf426182_NewSongChurch-ShilohCreative-p-1080.jpeg │ │ └── 62bdee66d787c4a6f4d9ced7_4WhistlesWinery-ShilohCreative-p-1080.jpeg ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json ├── robots.txt └── wow.min.js └── src ├── App.css ├── App.js ├── App.test.js ├── Cursor.js ├── Footer.js ├── Home.js ├── NavBar.js ├── Projects.js ├── index.js ├── logo.svg ├── reportWebVitals.js └── setupTests.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": "portfolio", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@emailjs/browser": "^3.6.2", 7 | "@emotion/react": "^11.10.4", 8 | "@emotion/styled": "^11.10.4", 9 | "@mui/icons-material": "^5.10.3", 10 | "@mui/material": "^5.10.4", 11 | "@testing-library/jest-dom": "^5.16.4", 12 | "@testing-library/react": "^13.3.0", 13 | "@testing-library/user-event": "^13.5.0", 14 | "axios": "^0.27.2", 15 | "bootstrap": "^5.1.3", 16 | "react": "^18.2.0", 17 | "react-bootstrap": "^2.4.0", 18 | "react-dom": "^18.2.0", 19 | "react-router": "^6.3.0", 20 | "react-router-dom": "^6.3.0", 21 | "react-router-hash-link": "^2.4.3", 22 | "react-scripts": "5.0.1", 23 | "react-spinners": "^0.13.3", 24 | "swiper": "^8.3.1", 25 | "web-vitals": "^2.1.4" 26 | }, 27 | "scripts": { 28 | "start": "react-scripts start", 29 | "build": "react-scripts build", 30 | "test": "react-scripts test", 31 | "eject": "react-scripts eject" 32 | }, 33 | "eslintConfig": { 34 | "extends": [ 35 | "react-app", 36 | "react-app/jest" 37 | ] 38 | }, 39 | "browserslist": { 40 | "production": [ 41 | ">0.2%", 42 | "not dead", 43 | "not op_mini all" 44 | ], 45 | "development": [ 46 | "last 1 chrome version", 47 | "last 1 firefox version", 48 | "last 1 safari version" 49 | ] 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /public/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ 3 | { 4 | "id": "1", 5 | "title": "First Project", 6 | "description": "Lorem ipsum dolor sit amet consectetur adipisicing elit. Architecto facere vero consectetur itaque molestiae perspiciatis porro alias iure exercitationem quibusdam?", 7 | "link": "https://modest-ramanujan-f625b4.netlify.app/", 8 | "photo": "/images/slider/6233919229ea6779ed90baf2_VanguardDesignCo-ShilohCreative.jpg" 9 | }, 10 | { 11 | "id": "2", 12 | "title": "Second Project", 13 | "description": "Lorem ipsum dolor sit amet consectetur adipisicing elit. Architecto facere vero consectetur itaque molestiae perspiciatis porro alias iure exercitationem quibusdam?", 14 | "link": "https://modest-ramanujan-f625b4.netlify.app/", 15 | "photo": "/images/slider/62bdee66d787c4a6f4d9ced7_4WhistlesWinery-ShilohCreative-p-1080.jpeg" 16 | }, 17 | { 18 | "id": "3", 19 | "title": "Third Project", 20 | "description": "Lorem ipsum dolor sit amet consectetur adipisicing elit. Architecto facere vero consectetur itaque molestiae perspiciatis porro alias iure exercitationem quibusdam?", 21 | "link": "https://modest-ramanujan-f625b4.netlify.app/", 22 | "photo": "/images/slider/6233990417440f78c3061103_LandingPage-ShilohCreative (1).jpg" 23 | }, 24 | { 25 | "id": "4", 26 | "title": "Fourth Project", 27 | "description": "Lorem ipsum dolor sit amet consectetur adipisicing elit. Architecto facere vero consectetur itaque molestiae perspiciatis porro alias iure exercitationem quibusdam?", 28 | "link": "https://modest-ramanujan-f625b4.netlify.app/", 29 | "photo": "/images/slider/629a744633cf80efdf426182_NewSongChurch-ShilohCreative-p-1080.jpeg" 30 | }, 31 | { 32 | "id": "5", 33 | "title": "Fifth Project", 34 | "description": "Lorem ipsum dolor sit amet consectetur adipisicing elit. Architecto facere vero consectetur itaque molestiae perspiciatis porro alias iure exercitationem quibusdam?", 35 | "link": "https://modest-ramanujan-f625b4.netlify.app/", 36 | "photo": "/images/slider/623391a13c260eca5a41c7cc_BelloBeauty-ShilohCreative.jpg" 37 | }, 38 | { 39 | "id": "6", 40 | "title": "Sixth Project", 41 | "description": "Lorem ipsum dolor sit amet consectetur adipisicing elit. Architecto facere vero consectetur itaque molestiae perspiciatis porro alias iure exercitationem quibusdam?", 42 | "link": "https://modest-ramanujan-f625b4.netlify.app/", 43 | "photo": "/images/slider/623391b6028cc04e169667de_CodeSee-ShilohCreative.jpg" 44 | }, 45 | { 46 | "id": "7", 47 | "title": "Seventh Project", 48 | "description": "Lorem ipsum dolor sit amet consectetur adipisicing elit. Architecto facere vero consectetur itaque molestiae perspiciatis porro alias iure exercitationem quibusdam?", 49 | "link": "https://modest-ramanujan-f625b4.netlify.app/", 50 | "photo": "/images/slider/623391de29ea67625d90bc28_CodeSeeLearn-ShilohCreative.jpg" 51 | }, 52 | { 53 | "id": "8", 54 | "title": "Eighth Project", 55 | "description": "Lorem ipsum dolor sit amet consectetur adipisicing elit. Architecto facere vero consectetur itaque molestiae perspiciatis porro alias iure exercitationem quibusdam?", 56 | "link": "https://modest-ramanujan-f625b4.netlify.app/", 57 | "photo": "/images/slider/6233964d458d840baa74c42f_LandingPage-ShilohCreative.jpg" 58 | }, 59 | { 60 | "id": "9", 61 | "title": "Ninth Project", 62 | "description": "Lorem ipsum dolor sit amet consectetur adipisicing elit. Architecto facere vero consectetur itaque molestiae perspiciatis porro alias iure exercitationem quibusdam?", 63 | "link": "https://modest-ramanujan-f625b4.netlify.app/", 64 | "photo": "/images/slider/6233919229ea6779ed90baf2_VanguardDesignCo-ShilohCreative.jpg" 65 | }, 66 | { 67 | "id": "10", 68 | "title": "Tenth Project", 69 | "description": "Lorem ipsum dolor sit amet consectetur adipisicing elit. Architecto facere vero consectetur itaque molestiae perspiciatis porro alias iure exercitationem quibusdam?", 70 | "link": "https://modest-ramanujan-f625b4.netlify.app/", 71 | "photo": "/images/slider/6233990417440f78c3061103_LandingPage-ShilohCreative (1).jpg" 72 | } 73 | ] 74 | } -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aishatarek/portfolio_react_js/ac142a70a3f5cc3ecfcd57b107ccc88f5686e457/public/favicon.ico -------------------------------------------------------------------------------- /public/images/618b5b33c589e179c2c8b27c_Shiloh New Logo-01-p-3200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aishatarek/portfolio_react_js/ac142a70a3f5cc3ecfcd57b107ccc88f5686e457/public/images/618b5b33c589e179c2c8b27c_Shiloh New Logo-01-p-3200.png -------------------------------------------------------------------------------- /public/images/6232406724bd9b36622aed48_image 3 (Traced).svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/images/623240674411e07510215b6f_image 2 (Traced).svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/images/62324067d42bfc263ee547ff_image 4 (Traced).svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/images/623503637e979197919c6c03_Topology-1 (1).svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /public/images/623506fac432155edb494f48_Topology-2 (1).svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /public/images/623a183aa76fb537cbc5dc0e_Group 8-p-500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aishatarek/portfolio_react_js/ac142a70a3f5cc3ecfcd57b107ccc88f5686e457/public/images/623a183aa76fb537cbc5dc0e_Group 8-p-500.png -------------------------------------------------------------------------------- /public/images/6296648937731de4e98d9a5a_zapier-seeklogo.com 2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/images/62966934fc028e3715017571_undraw_mobile_development_re_wwsn 1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /public/images/62966cbb57bfa16e79fe8406_undraw_data_re_80ws 1 (1).svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | -------------------------------------------------------------------------------- /public/images/62966cd0f71f4f702ab6febd_undraw_asset_selection_re_k5fj 1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /public/images/pexels-ellie-burgin-3780365.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aishatarek/portfolio_react_js/ac142a70a3f5cc3ecfcd57b107ccc88f5686e457/public/images/pexels-ellie-burgin-3780365.jpg -------------------------------------------------------------------------------- /public/images/slider/6233919229ea6779ed90baf2_VanguardDesignCo-ShilohCreative.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aishatarek/portfolio_react_js/ac142a70a3f5cc3ecfcd57b107ccc88f5686e457/public/images/slider/6233919229ea6779ed90baf2_VanguardDesignCo-ShilohCreative.jpg -------------------------------------------------------------------------------- /public/images/slider/623391a13c260eca5a41c7cc_BelloBeauty-ShilohCreative.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aishatarek/portfolio_react_js/ac142a70a3f5cc3ecfcd57b107ccc88f5686e457/public/images/slider/623391a13c260eca5a41c7cc_BelloBeauty-ShilohCreative.jpg -------------------------------------------------------------------------------- /public/images/slider/623391b6028cc04e169667de_CodeSee-ShilohCreative.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aishatarek/portfolio_react_js/ac142a70a3f5cc3ecfcd57b107ccc88f5686e457/public/images/slider/623391b6028cc04e169667de_CodeSee-ShilohCreative.jpg -------------------------------------------------------------------------------- /public/images/slider/623391de29ea67625d90bc28_CodeSeeLearn-ShilohCreative.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aishatarek/portfolio_react_js/ac142a70a3f5cc3ecfcd57b107ccc88f5686e457/public/images/slider/623391de29ea67625d90bc28_CodeSeeLearn-ShilohCreative.jpg -------------------------------------------------------------------------------- /public/images/slider/6233964d458d840baa74c42f_LandingPage-ShilohCreative.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aishatarek/portfolio_react_js/ac142a70a3f5cc3ecfcd57b107ccc88f5686e457/public/images/slider/6233964d458d840baa74c42f_LandingPage-ShilohCreative.jpg -------------------------------------------------------------------------------- /public/images/slider/6233990417440f78c3061103_LandingPage-ShilohCreative (1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aishatarek/portfolio_react_js/ac142a70a3f5cc3ecfcd57b107ccc88f5686e457/public/images/slider/6233990417440f78c3061103_LandingPage-ShilohCreative (1).jpg -------------------------------------------------------------------------------- /public/images/slider/629a744633cf80efdf426182_NewSongChurch-ShilohCreative-p-1080.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aishatarek/portfolio_react_js/ac142a70a3f5cc3ecfcd57b107ccc88f5686e457/public/images/slider/629a744633cf80efdf426182_NewSongChurch-ShilohCreative-p-1080.jpeg -------------------------------------------------------------------------------- /public/images/slider/62bdee66d787c4a6f4d9ced7_4WhistlesWinery-ShilohCreative-p-1080.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aishatarek/portfolio_react_js/ac142a70a3f5cc3ecfcd57b107ccc88f5686e457/public/images/slider/62bdee66d787c4a6f4d9ced7_4WhistlesWinery-ShilohCreative-p-1080.jpeg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 15 | 16 | 17 | 18 | Aisha Tarek 19 | 20 | 21 | 22 | 23 |
24 | 34 | 35 | 36 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aishatarek/portfolio_react_js/ac142a70a3f5cc3ecfcd57b107ccc88f5686e457/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aishatarek/portfolio_react_js/ac142a70a3f5cc3ecfcd57b107ccc88f5686e457/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 | -------------------------------------------------------------------------------- /public/wow.min.js: -------------------------------------------------------------------------------- 1 | /*! WOW wow.js - v1.3.0 - 2016-10-04 2 | * https://wowjs.uk 3 | * Copyright (c) 2016 Thomas Grainger; Licensed MIT */!function(a,b){if("function"==typeof define&&define.amd)define(["module","exports"],b);else if("undefined"!=typeof exports)b(module,exports);else{var c={exports:{}};b(c,c.exports),a.WOW=c.exports}}(this,function(a,b){"use strict";function c(a,b){if(!(a instanceof b))throw new TypeError("Cannot call a class as a function")}function d(a,b){return b.indexOf(a)>=0}function e(a,b){for(var c in b)if(null==a[c]){var d=b[c];a[c]=d}return a}function f(a){return/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(a)}function g(a){var b=arguments.length<=1||void 0===arguments[1]?!1:arguments[1],c=arguments.length<=2||void 0===arguments[2]?!1:arguments[2],d=arguments.length<=3||void 0===arguments[3]?null:arguments[3],e=void 0;return null!=document.createEvent?(e=document.createEvent("CustomEvent"),e.initCustomEvent(a,b,c,d)):null!=document.createEventObject?(e=document.createEventObject(),e.eventType=a):e.eventName=a,e}function h(a,b){null!=a.dispatchEvent?a.dispatchEvent(b):b in(null!=a)?a[b]():"on"+b in(null!=a)&&a["on"+b]()}function i(a,b,c){null!=a.addEventListener?a.addEventListener(b,c,!1):null!=a.attachEvent?a.attachEvent("on"+b,c):a[b]=c}function j(a,b,c){null!=a.removeEventListener?a.removeEventListener(b,c,!1):null!=a.detachEvent?a.detachEvent("on"+b,c):delete a[b]}function k(){return"innerHeight"in window?window.innerHeight:document.documentElement.clientHeight}Object.defineProperty(b,"__esModule",{value:!0});var l,m,n=function(){function a(a,b){for(var c=0;c=0){var b=a.target||a.srcElement;b.className=b.className.replace(this.config.animateClass,"").trim()}}},{key:"customStyle",value:function(a,b,c,d,e){return b&&this.cacheAnimationName(a),a.style.visibility=b?"hidden":"visible",c&&this.vendorSet(a.style,{animationDuration:c}),d&&this.vendorSet(a.style,{animationDelay:d}),e&&this.vendorSet(a.style,{animationIterationCount:e}),this.vendorSet(a.style,{animationName:b?"none":this.cachedAnimationName(a)}),a}},{key:"vendorSet",value:function(a,b){for(var c in b)if(b.hasOwnProperty(c)){var d=b[c];a[""+c]=d;for(var e=0;e=e&&f>=c}},{key:"disabled",value:function(){return!this.config.mobile&&f(navigator.userAgent)}}]),a}();b["default"]=r,a.exports=b["default"]}); -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | box-sizing: border-box; 5 | cursor: none; 6 | } 7 | 8 | body { 9 | overflow-x: hidden; 10 | } 11 | 12 | .preloaderr { 13 | display: flex; 14 | justify-content: center; 15 | align-items: center; 16 | min-height: 100vh; 17 | background-color: #070707; 18 | } 19 | 20 | /* cursor */ 21 | 22 | .cursor { 23 | position: absolute; 24 | z-index: 1000; 25 | background-color: #f87765; 26 | height: 30px; 27 | width: 30px; 28 | border-radius: 50%; 29 | } 30 | 31 | /*navbar*/ 32 | 33 | .navbar { 34 | position: absolute; 35 | width: 100%; 36 | top: 0; 37 | background-color: transparent !important; 38 | z-index: 3; 39 | } 40 | 41 | .navbar .show .navlinks{ 42 | width: 100%; 43 | background-color: #070707; 44 | display: flex; 45 | flex-direction: column; 46 | height: 80vh; 47 | justify-content: space-around !important; 48 | text-align: center; 49 | } 50 | 51 | .navbar-toggler { 52 | border: 1px solid #f87765; 53 | background-color: rgba(248, 119, 101, .2); 54 | backdrop-filter: blur(3px); 55 | } 56 | 57 | .navbar img { 58 | width: 100px; 59 | } 60 | 61 | .navlinks { 62 | width: 100%; 63 | 64 | } 65 | 66 | .navlinks a { 67 | color: hsla(0, 0%, 100%, .75); 68 | font-size: 18px; 69 | font-weight: 500; 70 | letter-spacing: 1px; 71 | text-decoration: none; 72 | margin: 0 10px; 73 | transition: all 0.5s ease-in-out; 74 | } 75 | 76 | .navlinks a:hover { 77 | color: #f87765; 78 | transform: scale(1.1); 79 | } 80 | 81 | 82 | 83 | /* bannar */ 84 | .bannar { 85 | background-color: #070707; 86 | padding: 100px 0; 87 | } 88 | 89 | .bannar .bannartext { 90 | padding-top: 100px; 91 | } 92 | 93 | .bannar .bannartext p { 94 | color: #f87765; 95 | font-weight: 600; 96 | } 97 | 98 | .bannar .bannartext p span { 99 | color: white; 100 | } 101 | 102 | .bannar .bannartext h2 ,.bannar .bannartext h1{ 103 | color: white; 104 | margin: 15px 0; 105 | font-size: 50px; 106 | } 107 | 108 | .bannar .bannartext h5 { 109 | color: hsla(0, 0%, 100%, .75) !important; 110 | margin: 20px 0; 111 | font-size: 25px; 112 | } 113 | 114 | .bannar .bannartext button { 115 | color: white; 116 | background-color: #f87765; 117 | border-radius: 10px; 118 | font-size: 18px; 119 | padding: 5px 20px; 120 | margin-top: 20px; 121 | 122 | } 123 | 124 | .bannar .bannarimgs { 125 | position: relative; 126 | } 127 | 128 | .bannar .bannarimgs .waves { 129 | width: 500px; 130 | 131 | } 132 | 133 | .bannar .bannarimgs .laptop { 134 | width: 400px; 135 | position: absolute; 136 | top: 50px; 137 | left: 70px; 138 | } 139 | 140 | .bannar .imgbox { 141 | padding: 20px; 142 | border-radius: 10px; 143 | background-color: rgba(248, 119, 101, .2); 144 | backdrop-filter: blur(3px); 145 | width: 80px; 146 | height: 80px; 147 | display: flex; 148 | justify-content: center; 149 | align-items: center; 150 | position: absolute; 151 | } 152 | 153 | .bannar .gimg { 154 | left: 60px; 155 | bottom: 150px; 156 | } 157 | 158 | .bannar .wimg { 159 | left: 250px; 160 | top: 50px; 161 | } 162 | 163 | .bannar .uimg { 164 | right: 100px; 165 | bottom: 100px; 166 | } 167 | 168 | .imgbox img { 169 | width: 40px; 170 | } 171 | 172 | /*second section */ 173 | .homesec2 { 174 | background-color: #070707; 175 | padding: 50px 0; 176 | 177 | } 178 | 179 | .homesec2 .row { 180 | align-items: center; 181 | } 182 | 183 | .homesec2 .secimgs { 184 | position: relative; 185 | } 186 | 187 | .homesec2 .waves { 188 | width: 100%; 189 | transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(23.279deg) skew(0deg, 0deg); 190 | } 191 | 192 | .homesec2 .people { 193 | position: absolute; 194 | width: 80%; 195 | top: 25%; 196 | left: 20%; 197 | } 198 | 199 | .homesec2 .sec2text button { 200 | color: white; 201 | border: 1px solid #f87765; 202 | background-color: #070707; 203 | border-radius: 10px; 204 | font-size: 18px; 205 | padding: 5px 20px; 206 | margin-bottom: 20px; 207 | } 208 | 209 | .homesec2 .sec2text p { 210 | color: white; 211 | font-size: 25px; 212 | font-weight: 600; 213 | } 214 | 215 | /* third section */ 216 | .homesec3 { 217 | background-color: #070707; 218 | } 219 | 220 | .homesec3 .sectext { 221 | padding: 50px 100px; 222 | display: flex; 223 | align-items: baseline; 224 | } 225 | 226 | .homesec3 .sectext h3 { 227 | color: white; 228 | font-size: 50px; 229 | font-weight: 600; 230 | margin-right: 30px; 231 | } 232 | 233 | .homesec3 .sectext a { 234 | color: #f87765; 235 | font-size: 20px; 236 | text-decoration: none; 237 | 238 | } 239 | 240 | .homesec3 .swiper-slide { 241 | padding: 20px; 242 | } 243 | 244 | .homesec3 .swiper-slide img { 245 | width: 100%; 246 | border-radius: 10px; 247 | } 248 | 249 | .homesec3 .swiper-pagination-bullet { 250 | background-color: #f87765; 251 | height: 15px; 252 | width: 15px; 253 | } 254 | 255 | .homesec3 .swiper-pagination { 256 | bottom: 0 !important; 257 | } 258 | 259 | /* fourth section */ 260 | .homesec4 { 261 | background-color: #070707; 262 | padding: 100px; 263 | position: relative; 264 | } 265 | 266 | .homesec4 h3 { 267 | font-size: 50px; 268 | color: white; 269 | text-align: center; 270 | } 271 | 272 | .homesec4 .waves { 273 | position: absolute; 274 | top: 10%; 275 | width: 50%; 276 | left: 25%; 277 | height: 80%; 278 | object-fit: contain; 279 | transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(19.9363deg) skew(0deg, 0deg); 280 | } 281 | 282 | .homesec4 .divLeft, 283 | .homesec4 .divRight { 284 | width: 50%; 285 | background-color: rgba(248, 119, 101, .2); 286 | backdrop-filter: blur(3px); 287 | display: flex; 288 | align-items: center; 289 | border-radius: 10px; 290 | padding: 10px; 291 | margin-top: 20px; 292 | } 293 | 294 | .homesec4 .divLeft { 295 | margin-right: auto; 296 | } 297 | 298 | .homesec4 .divRight { 299 | margin-left: auto; 300 | } 301 | 302 | .homesec4 .divLeft img, 303 | .homesec4 .divRight img { 304 | width: 70px; 305 | height: 70px; 306 | margin-right: 10px; 307 | 308 | } 309 | 310 | .homesec4 .divLeft h5, 311 | .homesec4 .divRight h5 { 312 | color: white; 313 | } 314 | 315 | .homesec4 .divLeft p, 316 | .homesec4 .divRight p { 317 | color: hsla(0, 0%, 100%, .75); 318 | 319 | } 320 | 321 | /* fifth section */ 322 | .homesec5 { 323 | background-color: #070707; 324 | padding: 100px; 325 | text-align: center; 326 | 327 | } 328 | 329 | .homesec5 h2 { 330 | text-align: center; 331 | color: white; 332 | font-size: 40px; 333 | } 334 | 335 | .homesec5 .col-md-4 div { 336 | background-color: rgba(248, 119, 101, .2); 337 | backdrop-filter: blur(3px); 338 | border-radius: 10px; 339 | padding: 30px 20px 50px; 340 | height: 550px; 341 | margin-top: 20px; 342 | } 343 | 344 | .homesec5 h5 { 345 | color: #f87765; 346 | font-weight: 400; 347 | font-size: 18px; 348 | } 349 | 350 | .homesec5 h3 { 351 | color: white; 352 | font-weight: 400; 353 | } 354 | 355 | .homesec5 .col-md-4 img { 356 | width: 80%; 357 | height: 300px; 358 | } 359 | 360 | .homesec5 .col-md-4 p { 361 | color: hsla(0, 0%, 100%, .75); 362 | margin-top: 20px; 363 | } 364 | 365 | /* sixth section */ 366 | /* fifth section */ 367 | .homesec5 { 368 | background-color: #070707; 369 | padding: 100px; 370 | text-align: center; 371 | 372 | } 373 | 374 | .homesec5 h2 { 375 | text-align: center; 376 | color: white; 377 | font-size: 40px; 378 | } 379 | 380 | .homesec5 .col-md-4 div { 381 | background-color: rgba(248, 119, 101, .2); 382 | backdrop-filter: blur(3px); 383 | border-radius: 10px; 384 | padding: 30px 20px 50px; 385 | height: 550px; 386 | margin-top: 20px; 387 | } 388 | 389 | .homesec5 h5 { 390 | color: #f87765; 391 | font-weight: 400; 392 | font-size: 18px; 393 | } 394 | 395 | .homesec5 h3 { 396 | color: white; 397 | font-weight: 400; 398 | } 399 | 400 | .homesec5 .col-md-4 img { 401 | width: 80%; 402 | height: 300px; 403 | } 404 | 405 | .homesec5 .col-md-4 p { 406 | color: hsla(0, 0%, 100%, .75); 407 | margin-top: 20px; 408 | } 409 | 410 | /* sixth section */ 411 | .homesec6 { 412 | background-color: #070707; 413 | padding: 100px; 414 | 415 | } 416 | 417 | .homesec6 h3 { 418 | text-align: center; 419 | color: white; 420 | font-size: 40px; 421 | margin-bottom: 30px; 422 | 423 | } 424 | 425 | .homesec6 p { 426 | color: white; 427 | font-weight: 400; 428 | font-size: 25px; 429 | text-align: left; 430 | } 431 | 432 | .homesec6 p span { 433 | color: #f87765; 434 | font-weight: 400; 435 | margin-right: 10px; 436 | } 437 | 438 | .homesec6 form { 439 | display: flex; 440 | flex-direction: column; 441 | padding: 20px; 442 | width: 100%; 443 | margin: auto; 444 | text-align: left; 445 | direction: ltr; 446 | 447 | } 448 | 449 | .homesec6 form input, 450 | .homesec6 form textarea, 451 | .homesec6 form select { 452 | width: 100%; 453 | margin: 20px 0; 454 | border-radius: 60px; 455 | padding: 10px 16px; 456 | outline: none; 457 | border: 1px solid rgba(248, 118, 101, 0.463); 458 | color: white; 459 | background-color: #070707; 460 | margin-right: 10px; 461 | } 462 | 463 | .homesec6 form input::placeholder, 464 | .homesec6 form textarea::placeholder { 465 | color: rgb(223, 222, 222); 466 | font-size: 20px; 467 | text-align: left; 468 | padding: 20px; 469 | } 470 | 471 | .homesec6 button { 472 | display: inline-block; 473 | background-color: rgba(248, 118, 101, 0.463); 474 | backdrop-filter: blur(3px); 475 | border: none; 476 | color: white; 477 | padding: 10px 10px; 478 | border-radius: 1%; 479 | margin: 10px 0; 480 | width: 250px; 481 | font-size: 18px; 482 | margin: 20px 0; 483 | font-weight: 600; 484 | text-align: center; 485 | border-radius: 10px; 486 | transition: all 1s ease-in-out; 487 | } 488 | 489 | .homesec6 button:hover { 490 | color: #f87765; 491 | text-decoration: none; 492 | background-color: white; 493 | } 494 | 495 | /*********footer********/ 496 | footer { 497 | background-color: #070707; 498 | padding: 50px 50px; 499 | } 500 | 501 | footer img { 502 | width: 100px; 503 | } 504 | 505 | footer a { 506 | display: inline-block; 507 | color: hsla(0, 0%, 100%, .75); 508 | font-size: 15px; 509 | font-weight: 500; 510 | letter-spacing: 1px; 511 | text-decoration: none; 512 | margin: 10px 5px; 513 | transition: all 0.5s ease-in-out; 514 | } 515 | 516 | footer a:hover { 517 | color: #f87765; 518 | transform: scale(1.1); 519 | } 520 | 521 | footer .iconsdiv { 522 | display: flex; 523 | justify-content: flex-end; 524 | } 525 | 526 | footer .iconsdiv svg { 527 | font-size: 35px; 528 | margin-left: 20px; 529 | } 530 | 531 | footer .copyright { 532 | display: flex; 533 | justify-content: center; 534 | margin-top: 20px; 535 | color: white; 536 | } 537 | 538 | footer .copyright p:nth-child(2) { 539 | margin-left: 20px; 540 | } 541 | 542 | /*****projects*************/ 543 | .allprojectsec { 544 | background-color: #070707; 545 | padding: 100px; 546 | min-height: 100vh; 547 | position: relative; 548 | } 549 | 550 | .allprojectsec h3 { 551 | text-align: center; 552 | color: #f87765; 553 | font-size: 40px; 554 | font-weight: 400; 555 | } 556 | 557 | .allprojectsec .waves { 558 | position: absolute; 559 | height: 500px; 560 | } 561 | 562 | .allprojectsec .col-md-4 { 563 | padding: 20px; 564 | z-index: 2; 565 | margin-top: 50px; 566 | } 567 | 568 | .allprojectsec .col-md-4 div { 569 | z-index: 2; 570 | background-color: #1d1d1f; 571 | min-height: 400px; 572 | border-radius: 2%; 573 | padding: 20px; 574 | } 575 | 576 | .allprojectsec .col-md-4 div img { 577 | width: 100%; 578 | border-radius: 2%; 579 | 580 | } 581 | 582 | .allprojectsec .col-md-4 div h5 { 583 | color: white; 584 | font-size: 30px; 585 | margin: 10px 0; 586 | text-transform: capitalize; 587 | 588 | } 589 | 590 | .allprojectsec .col-md-4 div p { 591 | color: rgb(223, 222, 222); 592 | font-weight: 400; 593 | 594 | } 595 | 596 | .allprojectsec .col-md-4 div a { 597 | color: #f87765; 598 | text-decoration: none; 599 | font-size: 20px; 600 | } 601 | 602 | 603 | 604 | @media only screen and (max-width:768px) { 605 | 606 | 607 | .bannar .bannarimgs .waves { 608 | width: 300px; 609 | margin-top: 30px; 610 | 611 | } 612 | 613 | .bannar .bannarimgs .laptop { 614 | width: 240px; 615 | top: 35px; 616 | left: 50px; 617 | } 618 | 619 | .bannar .imgbox { 620 | width: 60px; 621 | height: 60px; 622 | } 623 | 624 | .bannar .gimg { 625 | left: 60px; 626 | bottom: 100px; 627 | } 628 | 629 | .bannar .wimg { 630 | left: 160px; 631 | top: 20px; 632 | } 633 | 634 | .bannar .uimg { 635 | left: 250px; 636 | bottom: 100px; 637 | } 638 | 639 | .imgbox img { 640 | width: 30px; 641 | } 642 | 643 | .homesec3 .sectext { 644 | padding: 100px 10px; 645 | } 646 | 647 | .homesec3 .sectext h3 { 648 | margin: 0; 649 | font-size: 25px; 650 | } 651 | 652 | .homesec4 { 653 | padding: 100px 10px; 654 | } 655 | 656 | .homesec5 { 657 | padding: 100px 0; 658 | } 659 | 660 | .homesec5 .col-md-4 div { 661 | min-height: 700px; 662 | } 663 | 664 | .homesec4 .divLeft, 665 | .homesec4 .divRight { 666 | flex-wrap: wrap; 667 | width: 100%; 668 | } 669 | 670 | .homesec6 { 671 | padding: 100px 0; 672 | } 673 | 674 | .homesec6 .d-flex { 675 | flex-wrap: wrap; 676 | } 677 | } 678 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import React, { useEffect, useState } from "react"; 2 | import Home from './Home'; 3 | import { BrowserRouter, Route, Routes } from 'react-router-dom'; 4 | import NavBar from './NavBar'; 5 | import ScaleLoader from "react-spinners/ScaleLoader"; 6 | import Cursor from './Cursor'; 7 | import Projects from './Projects'; 8 | import 'bootstrap/dist/css/bootstrap.min.css'; 9 | import "swiper/css"; 10 | import "swiper/css/free-mode"; 11 | import "swiper/css/pagination"; 12 | import './App.css'; 13 | 14 | function App() { 15 | const [loading, setLoading] = useState(false); 16 | useEffect(() => { 17 | setLoading(true); 18 | setTimeout(() => { 19 | setLoading(false); 20 | }, 3000); 21 | }, []) 22 | return ( 23 | 24 | 25 | {loading ? 26 |
27 | 28 |
: 29 | <> 30 | 31 | 32 | } /> 33 | } /> 34 | 35 | 36 | } 37 |
38 | ); 39 | } 40 | 41 | export default App; 42 | -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- 1 | import { render, screen } from '@testing-library/react'; 2 | import App from './App'; 3 | 4 | test('renders learn react link', () => { 5 | render(); 6 | const linkElement = screen.getByText(/learn react/i); 7 | expect(linkElement).toBeInTheDocument(); 8 | }); 9 | -------------------------------------------------------------------------------- /src/Cursor.js: -------------------------------------------------------------------------------- 1 | import React, { useState } from 'react' 2 | 3 | export default function Cursor() { 4 | const [cursorX, setCursorX] = useState() 5 | const [cursorY, setCursorY] = useState() 6 | window.addEventListener("mousemove",e=>{ 7 | setCursorX(e.pageX) 8 | setCursorY(e.pageY) 9 | 10 | }) 11 | return (<> 12 |
16 | 17 |
18 | 19 | ) 20 | } 21 | -------------------------------------------------------------------------------- /src/Footer.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { Col, Container, Row } from 'react-bootstrap'; 3 | import { HashLink } from 'react-router-hash-link'; 4 | import { Link } from 'react-router-dom'; 5 | import FacebookIcon from '@mui/icons-material/Facebook'; 6 | import InstagramIcon from '@mui/icons-material/Instagram'; 7 | import LinkedInIcon from '@mui/icons-material/LinkedIn'; 8 | function Footer() { 9 | return ( 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | Latest Builds 21 | Process 22 | Services 23 | Contact Us 24 | Projects 25 |
26 | 27 | 28 |
29 | 30 | 31 | 32 |
33 | 34 |
35 |
36 |

© 2022 Your Name

37 |

Email: info@shilohcreative.com

38 |
39 |
40 |
41 | ) 42 | } 43 | 44 | export default Footer -------------------------------------------------------------------------------- /src/Home.js: -------------------------------------------------------------------------------- 1 | import React, { useState, useEffect, useRef } from "react"; 2 | import axios from "axios"; 3 | import { Swiper, SwiperSlide } from "swiper/react"; 4 | import { FreeMode, Pagination } from "swiper"; 5 | import { Container, Row, Col } from 'react-bootstrap'; 6 | import { Link } from 'react-router-dom'; 7 | import emailjs from '@emailjs/browser'; 8 | import Footer from "./Footer"; 9 | import { HashLink } from 'react-router-hash-link'; 10 | 11 | 12 | function Home() { 13 | const [projects, setProject] = useState([]); 14 | const form = useRef(); 15 | useEffect(() => { 16 | axios.get("data.json") 17 | .then((res) => { 18 | setProject(res.data.projects) 19 | }) 20 | }, []) 21 | const sendEmail = (e) => { 22 | alert("message sent successfully") 23 | e.preventDefault(); 24 | emailjs.sendForm('service_9w3e1yr', 'template_1on2s3s', form.current, 'user_g1irYNKVOuewluAX01nOK') 25 | .then((result) => { 26 | console.log(result.text); 27 | }, (error) => { 28 | console.log(error.text); 29 | }); 30 | e.target.reset() 31 | }; 32 | return ( 33 | <> 34 | {/* start bannar */} 35 |
36 | 37 | 38 | 39 |

WEB DESIGN // WEBFLOW DEVELOPMENT // SEO

40 |

Aisha Tarek Portfolio .

41 |
We build marketing websites that help you sell on autopilot.
42 | 43 | 44 | 45 | 46 | 47 |
48 | 49 |
50 |
51 | 52 |
53 |
54 | 55 |
56 | 57 |
58 |
59 |
60 | {/* end bannar */} 61 | {/* start second section */} 62 |
63 | 64 | 65 | 66 |
67 | 68 | 69 |
70 | 71 | 72 | 73 |

Imagine having your sales team on the job 24/7, interacting with an endless stream of ready-to-buy visitors.

74 | 75 |
76 |
77 |
78 | {/* end second section */} 79 | {/* start third section */} 80 |
81 |
82 |

Latest builds.

83 | View Projects 84 |
85 | 105 | {projects.slice(1, 6).map((project) => ( 106 | 107 | ))} 108 | 109 |
110 | {/* end third section */} 111 | {/* start fourth section */} 112 |
113 |

How it's done.

114 | 115 |
116 | 117 |
118 |
UX/UI Design
119 |

Where concepts turn into a strategic user-experience.

120 |
121 |
122 |
123 | 124 |
125 |
Webflow Development
126 |

Where design turns into code.

127 |
128 |
129 |
130 | 131 |
132 |
System Automation
133 |

Where busywork gets delegated.

134 |
135 |
136 |
137 | 138 |
139 |
SEO
140 |

Where customers come flooding in.

141 |
142 |
143 |
144 | {/* end fourth section */} 145 | {/* start fifth section */} 146 |
147 |

Why Webflow.

148 | 149 | 150 | 151 | 152 |
153 |
REASON 1
154 |

Next-Level Storytelling

155 | 156 |

Unleash the best visuals and experiences that modern web design has to offer. Webflow turns your wildest of ideas into strategic customer-experiences.

157 |
158 | 159 | 160 |
161 |
REASON 2
162 |

Unbelievable Performance

163 | 164 |

Hosted on an ultra-fast global CDN, Webflow goes full steam ahead with load speed, uptime, asset optimization, and SEO. All without ever needing to install a patch or upload a server configuration.

165 |
166 | 167 | 168 |
169 |
REASON 3
170 |

Developer-Free Tweaks

171 | 172 |

Webflow’s ‘Editor Mode’ allows any team member to update content as they please without wreaking havoc or paying people like us to fix it.

173 |
174 | 175 |
176 |
177 |
178 | {/* end fifth section */} 179 | {/* start sixth section */} 180 |
181 | 182 |

Contact Us

183 | 184 | 185 |
186 |

Email: info@gmail.com

187 |

Phone: 0121133133131

188 |

Address: 23 street newyork

189 |
190 | 191 | 192 |
193 |
194 |
195 | 196 | 197 |
198 |
199 | 200 | 201 |
202 | 203 | 204 |
205 |
206 | 207 | 208 |
209 |
210 |
211 | {/* end sixth section */} 212 | {/* start footer */} 213 |