├── src
├── components
│ ├── Testimonials
│ │ ├── Testimonial.css
│ │ └── Testimonial.jsx
│ ├── Services
│ │ ├── Resume.pdf
│ │ ├── Services.css
│ │ └── Services.jsx
│ ├── FloatingDiv
│ │ ├── FloatingDiv.jsx
│ │ └── Floating.css
│ ├── Card
│ │ ├── Card.jsx
│ │ └── Card.css
│ ├── Navbar
│ │ ├── Navbar.css
│ │ ├── Navbar.jsx
│ │ └── Intro
│ │ │ ├── Intro.css
│ │ │ └── Intro.jsx
│ ├── Experience
│ │ ├── Experience.jsx
│ │ └── Experience.css
│ ├── Portfolio
│ │ ├── Portfolio.css
│ │ └── Portfolio.jsx
│ └── Works
│ │ ├── Works.css
│ │ └── Works.jsx
├── img
│ ├── boy.png
│ ├── hoc.png
│ ├── wave.png
│ ├── Upwork.png
│ ├── amazon.png
│ ├── crown.png
│ ├── fiverr.png
│ ├── github.png
│ ├── humble.png
│ ├── Facebook.png
│ ├── Shopify.png
│ ├── Vector1.png
│ ├── Vector2.png
│ ├── ecommerce.png
│ ├── glasses.png
│ ├── instagram.png
│ ├── linkedin.png
│ ├── musicapp.png
│ ├── profile1.jpg
│ ├── profile2.jpg
│ ├── profile3.jpg
│ ├── profile4.jpg
│ ├── profile5.jpg
│ ├── profile6.jpg
│ ├── sidebar.png
│ ├── thumbup.png
│ ├── heartemoji.png
│ ├── purpleblur.png
│ └── glassesimoji.png
├── index.js
├── index.css
├── App.js
├── App.css
└── logo.svg
├── public
├── robots.txt
├── favicon.ico
├── logo192.png
├── logo512.png
├── manifest.json
└── index.html
├── font
└── Gumela Regular.otf
├── .gitignore
├── package.json
└── README.md
/src/components/Testimonials/Testimonial.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/src/img/boy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/boy.png
--------------------------------------------------------------------------------
/src/img/hoc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/hoc.png
--------------------------------------------------------------------------------
/src/img/wave.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/wave.png
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/public/logo192.png
--------------------------------------------------------------------------------
/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/public/logo512.png
--------------------------------------------------------------------------------
/src/img/Upwork.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/Upwork.png
--------------------------------------------------------------------------------
/src/img/amazon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/amazon.png
--------------------------------------------------------------------------------
/src/img/crown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/crown.png
--------------------------------------------------------------------------------
/src/img/fiverr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/fiverr.png
--------------------------------------------------------------------------------
/src/img/github.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/github.png
--------------------------------------------------------------------------------
/src/img/humble.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/humble.png
--------------------------------------------------------------------------------
/src/img/Facebook.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/Facebook.png
--------------------------------------------------------------------------------
/src/img/Shopify.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/Shopify.png
--------------------------------------------------------------------------------
/src/img/Vector1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/Vector1.png
--------------------------------------------------------------------------------
/src/img/Vector2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/Vector2.png
--------------------------------------------------------------------------------
/src/img/ecommerce.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/ecommerce.png
--------------------------------------------------------------------------------
/src/img/glasses.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/glasses.png
--------------------------------------------------------------------------------
/src/img/instagram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/instagram.png
--------------------------------------------------------------------------------
/src/img/linkedin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/linkedin.png
--------------------------------------------------------------------------------
/src/img/musicapp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/musicapp.png
--------------------------------------------------------------------------------
/src/img/profile1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/profile1.jpg
--------------------------------------------------------------------------------
/src/img/profile2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/profile2.jpg
--------------------------------------------------------------------------------
/src/img/profile3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/profile3.jpg
--------------------------------------------------------------------------------
/src/img/profile4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/profile4.jpg
--------------------------------------------------------------------------------
/src/img/profile5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/profile5.jpg
--------------------------------------------------------------------------------
/src/img/profile6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/profile6.jpg
--------------------------------------------------------------------------------
/src/img/sidebar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/sidebar.png
--------------------------------------------------------------------------------
/src/img/thumbup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/thumbup.png
--------------------------------------------------------------------------------
/font/Gumela Regular.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/font/Gumela Regular.otf
--------------------------------------------------------------------------------
/src/img/heartemoji.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/heartemoji.png
--------------------------------------------------------------------------------
/src/img/purpleblur.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/purpleblur.png
--------------------------------------------------------------------------------
/src/img/glassesimoji.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/img/glassesimoji.png
--------------------------------------------------------------------------------
/src/components/Services/Resume.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudoyasir/portfolio-app-okasha/HEAD/src/components/Services/Resume.pdf
--------------------------------------------------------------------------------
/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 | );
--------------------------------------------------------------------------------
/src/components/FloatingDiv/FloatingDiv.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import './Floating.css'
3 | const FloatingDiv = ({image, txt1, txt2}) => {
4 | return (
5 |
6 |
7 |
8 | {txt1}
9 | {txt2}
10 |
11 |
12 | )
13 | }
14 |
15 | export default FloatingDiv
--------------------------------------------------------------------------------
/.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/index.css:
--------------------------------------------------------------------------------
1 | body {
2 | margin: 0;
3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
5 | sans-serif;
6 | -webkit-font-smoothing: antialiased;
7 | -moz-osx-font-smoothing: grayscale;
8 | }
9 |
10 | code {
11 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
12 | monospace;
13 | }
14 |
--------------------------------------------------------------------------------
/src/components/Card/Card.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import './Card.css'
3 | const Card = ({emoji, heading,detail}) => {
4 | return (
5 |
6 |
7 |
{heading}
8 |
{detail}
9 |
10 | LEARN MORE
11 |
12 |
13 | )
14 | }
15 |
16 | export default Card
--------------------------------------------------------------------------------
/src/components/FloatingDiv/Floating.css:
--------------------------------------------------------------------------------
1 | .floatingdiv{
2 | justify-content: space-around;
3 | display: flex;
4 | background: white;
5 | box-shadow: var(--boxShadow);
6 | border-radius: 17px;
7 | align-items: center;
8 | padding: 0px 28px 0px 0px;
9 | height: 4.5rem;
10 | }
11 | .floatingdiv>img{
12 | transform: scale(0.4);
13 | }
14 | .floatingdiv>span{
15 | font-family: sans-serif;
16 | font-size: 16px;
17 | }
--------------------------------------------------------------------------------
/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/Navbar/Navbar.css:
--------------------------------------------------------------------------------
1 | .n-wrapper{
2 | height: 10vh;
3 | display: flex;
4 | justify-content: space-between;
5 | }
6 | .n-left{
7 | flex: 1;
8 | align-items: center;
9 | display: flex;
10 | gap: 2rem;
11 | }
12 | .n-name{
13 | font-size: 1.3rem;
14 | font-weight: bold;
15 | }
16 | .n-right{
17 | display: flex;
18 | flex: 1;
19 | align-items: center;
20 | justify-content: center;
21 | font-weight: 400;
22 | }
23 | .n-list{
24 | flex: 10;
25 | }
26 | .n-list>ul{
27 | display: flex;
28 | gap: 2rem;
29 | margin-right: 4rem;
30 | }
31 | .n-list>ul>li:hover{
32 | cursor: pointer;
33 | color: var(--orange);
34 | }
35 | .n-button{
36 | flex: 2;
37 | }
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
12 |
13 |
14 | Portfolio
15 |
16 |
17 | You need to enable JavaScript to run this app.
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/src/components/Experience/Experience.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import './Experience.css'
3 | const Experience = () => {
4 | return (
5 |
6 |
7 |
2+
8 |
Years
9 |
Experience
10 |
11 |
12 |
10+
13 |
Completed
14 |
Projects
15 |
16 |
17 |
4+
18 |
Companies
19 |
Work
20 |
21 |
22 | )
23 | }
24 |
25 | export default Experience
--------------------------------------------------------------------------------
/src/components/Card/Card.css:
--------------------------------------------------------------------------------
1 | .card{
2 | width: 10rem;
3 | height: 13rem;
4 | position: absolute;
5 | flex-direction: column;
6 | gap: 1rem;
7 | align-items: center;
8 | width: 10rem;
9 | text-align: center;
10 | background: rgba(255, 255, 255, 0.26);
11 | border: 7px solid var(--orangeCard);
12 | box-shadow: var(--boxShadow);
13 | border-radius: 20px;
14 | padding: 0px 26px 2rem 26px;
15 | }
16 | .card span :nth-of-type(2){
17 | color: var(--gray);
18 | font-size: 16px;
19 | }
20 | .card > img{
21 | transform: scale(0.6);
22 | margin-bottom: -2rem;
23 | }
24 | .c-button{
25 | background: none;
26 | box-shadow: 0px 19px 60px rgba(0, 0, 0, 0.08);
27 | border: none;
28 | padding: 10px;
29 | color: #5290fd;
30 | }
--------------------------------------------------------------------------------
/src/components/Portfolio/Portfolio.css:
--------------------------------------------------------------------------------
1 | .portfolio{
2 | display: flex;
3 | align-items: center;
4 | justify-content: center;
5 | flex-direction: column;
6 | height: 70vh;
7 | }
8 | .portfolio span:nth-of-type(1){
9 | color: var(--black);
10 | font-size: 2rem;
11 | font-weight: bold;
12 | }
13 | .portfolio span:nth-of-type(2){
14 | color: var(--orange);
15 | font-size: 2.5rem;
16 | font-weight: bold;
17 | }
18 | /* slider */
19 | .portfolio .swiper{
20 | overflow: visible!important;
21 | }
22 | .portfolio-slider{
23 | margin-top: 3rem;
24 | width: 100%;
25 | }
26 | .portfolio-slider .swiper-slide{
27 | width: 20rem;
28 | }
29 | .portfolio img{
30 | width: 19rem;
31 | filter: drop-shadow(-12px 15px 13px);
32 | border-radius: 19px;
33 | }
--------------------------------------------------------------------------------
/src/App.js:
--------------------------------------------------------------------------------
1 | import Navbar from "./components/Navbar/Navbar";
2 | import './App.css'
3 | import Intro from "./components/Navbar/Intro/Intro";
4 | import floatingDiv from "./components/FloatingDiv/FloatingDiv";
5 | import Services from "./components/Services/Services";
6 | import Experience from "./components/Experience/Experience";
7 | import Works from "./components/Works/Works";
8 | import Portfolio from "./components/Portfolio/Portfolio";
9 | import Testimonial from "./components/Testimonials/Testimonial";
10 | function App() {
11 | return (
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 | );
23 | }
24 |
25 | export default App;
26 |
--------------------------------------------------------------------------------
/src/components/Navbar/Navbar.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import './Navbar.css'
3 | export default function () {
4 | return (
5 |
6 |
7 |
Andrew
8 |
toggle
9 |
10 |
11 |
12 |
13 | Home
14 | Services
15 | Experience
16 | Portfolio
17 | Testimonials
18 |
19 |
20 |
21 | Contact
22 |
23 |
24 |
25 | )
26 | }
27 |
--------------------------------------------------------------------------------
/src/App.css:
--------------------------------------------------------------------------------
1 | :root
2 | {
3 | --yellow: #F5C32C;
4 | --orange: #FCA61F;
5 | --black: #242049;
6 | --gray: #788097;
7 | --blueCard: #DDF8FE;
8 | --purple: rgb(242, 232, 248);
9 | --boxShadow: 0px 0px 0px rgb(0 0 0 / 8%);
10 | --orangeCard: rgba(252, 166, 31, 0.45);
11 | --smboxShadow: -79px 51px 60px rgba(0, 0, 0, 0.08);
12 | }
13 | .App{
14 | padding: 0.5rem 3.5rem;
15 | overflow: hidden;
16 | color: var(--black);
17 | }
18 | .button{
19 | border-radius: 34px;
20 | border: none;
21 | color: white;
22 | font-size: 16px;
23 | padding: 11px 26px 11px 26px;
24 | background: linear-gradient(180deg, #fdc50f 26.71%, #fb982f 99.36%);
25 | box-shadow: 0px 20px 24px 3px rgba(251, 161, 40 , 0.42);
26 | }
27 |
28 | .button:hover{
29 | background: white;
30 | cursor: pointer;
31 | color: var(--orange);
32 | border: 1px solid var(--orange);
33 | }
--------------------------------------------------------------------------------
/src/components/Services/Services.css:
--------------------------------------------------------------------------------
1 | .services{
2 | padding: 0 3rem 0 3rem;
3 | display: flex;
4 | height: 90vh;
5 | margin-bottom: 8rem;
6 | margin-top: 9rem;
7 | margin-bottom: 13rem;
8 | }
9 | .awesome{
10 | display: flex;
11 | flex-direction: column;
12 | position: relative;
13 | }
14 | .awesome > :nth-child(1){
15 | color: var(--black);
16 | font-size: 2.5rem;
17 | font-weight: bold;
18 | }
19 | .awesome > :nth-child(2){
20 | color: var(--orange);
21 | font-size: 2.5rem;
22 | font-weight: bold;
23 | }
24 | .awesome > :nth-child(3){
25 | color: var(--gray);
26 | font-size: 14px;
27 | margin-top: 1rem;
28 | }
29 | .s-button{
30 | width: 10rem;
31 | height: 3rem;
32 | margin-top: 1rem;
33 | }
34 | .cards{
35 | position: relative;
36 | }
37 | .cards >*{
38 | position: absolute;
39 | }
40 | .s-blur2{
41 | left: 14rem;
42 | top: 8rem;
43 | }
44 | .s-blur{
45 | top: 13rem;
46 | left: -18rem;
47 | }
--------------------------------------------------------------------------------
/src/components/Experience/Experience.css:
--------------------------------------------------------------------------------
1 | .experience{
2 | display: flex;
3 | align-items: center;
4 | justify-content: center;
5 | gap: 5rem;
6 | height: 60vh;
7 | margin-bottom: 8rem;
8 | }
9 | .achievement{
10 | display: flex;
11 | flex-direction: column;
12 | align-items: center;
13 | }
14 | .circle{
15 | width: 4rem;
16 | height: 4rem;
17 | background: white;
18 | border-radius: 100%;
19 | position: relative;
20 | display: flex;
21 | align-items: center;
22 | justify-content: center;
23 | font-size: 1.5rem;
24 | font-weight: bold;
25 | margin-bottom: 2rem;
26 | }
27 | .circle::before{
28 | border-radius: 100%;
29 | content: '';
30 | background-image: linear-gradient(to bottom, #87e6fb 0%, #ffc05c 100%);
31 | top: -8px;
32 | left: -8px;
33 | bottom: -8px;
34 | right: -8px;
35 | position: absolute;
36 | z-index: -1;
37 | box-shadow: var(--boxShadow);
38 | }
39 | .achievement span:nth-of-type(2){
40 | color: var(--orange);
41 | }
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "my-app",
3 | "version": "0.1.0",
4 | "private": true,
5 | "dependencies": {
6 | "@testing-library/jest-dom": "^5.17.0",
7 | "@testing-library/react": "^13.4.0",
8 | "@testing-library/user-event": "^13.5.0",
9 | "react": "^18.2.0",
10 | "react-dom": "^18.2.0",
11 | "react-paginate": "^8.2.0",
12 | "react-scripts": "5.0.1",
13 | "swiper": "^11.0.3",
14 | "web-vitals": "^2.1.4"
15 | },
16 | "scripts": {
17 | "start": "react-scripts start",
18 | "build": "react-scripts build",
19 | "test": "react-scripts test",
20 | "eject": "react-scripts eject"
21 | },
22 | "eslintConfig": {
23 | "extends": [
24 | "react-app",
25 | "react-app/jest"
26 | ]
27 | },
28 | "browserslist": {
29 | "production": [
30 | ">0.2%",
31 | "not dead",
32 | "not op_mini all"
33 | ],
34 | "development": [
35 | "last 1 chrome version",
36 | "last 1 firefox version",
37 | "last 1 safari version"
38 | ]
39 | }
40 | }
41 |
--------------------------------------------------------------------------------
/src/components/Portfolio/Portfolio.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import './Portfolio.css'
3 | import sidebar from "../../img/sidebar.png"
4 | import Ecommerce from "../../img/ecommerce.png"
5 | import musicapp from "../../img/musicapp.png"
6 | import hoc from "../../img/hoc.png"
7 | import 'swiper/css'
8 | import {Swiper, SwiperSlide} from 'swiper/react'
9 | const Portfolio = () => {
10 | return (
11 |
12 | {/* heading */}
13 |
Recent Projects
14 |
Portfolio
15 |
16 | {/* slider */}
17 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 | )
38 | }
39 |
40 | export default Portfolio
--------------------------------------------------------------------------------
/src/components/Works/Works.css:
--------------------------------------------------------------------------------
1 | .works{
2 | padding: 0 3rem 0 3rem;
3 | display: flex;
4 | height: 90vh;
5 | margin-top: 4rem;
6 | }
7 | /* right side */
8 | .w-right{
9 | position: relative;
10 | }
11 | .w-maincircle{
12 | left: 9rem;
13 | position: relative;
14 | width: 18rem;
15 | height: 18rem;
16 | border-radius: 100%;
17 | box-shadow: var(--smboxShadow);
18 | top: 2rem;
19 | background: white;
20 | }
21 | .w-maincircle>*{
22 | position: absolute;
23 | }
24 | .w-maincircle > :nth-child(1){
25 | top: -3rem;
26 | left: 6rem;
27 | }
28 | .w-maincircle > :nth-child(2){
29 | left: -3rem;
30 | top: 5rem;
31 | }
32 | .w-maincircle > :nth-child(3){
33 | left: 6rem;
34 | top: 5rem;
35 | }
36 | .w-maincircle > :nth-child(4){
37 | left: 15rem;
38 | top: 5rem;
39 | }
40 | .w-maincircle > :nth-child(5){
41 | left: 6rem;
42 | top: 13rem;
43 | }
44 | .w-seccircle{
45 | width: 6rem;
46 | height: 6rem;
47 | position: absolute;
48 | border-radius: 100%;
49 | border: 5px solid #ebebeb;
50 | display: flex;
51 | align-items: center;
52 | justify-content: center;
53 | background: none;
54 | box-shadow: var(--smboxShadow);
55 | background: white;
56 | }
57 | .w-seccircle{
58 | transform: scale(0.6);
59 | }
60 | .w-backcircle{
61 | position: absolute;
62 | height: 13rem;
63 | width: 13rem;
64 | border-radius: 100%;
65 | z-index: -1;
66 | }
67 | .bluecircle{
68 | background: #1949B8;
69 | left: 18rem;
70 | top: 0rem;
71 | }
72 | .yellowcircle{
73 | background: #F5C32C;
74 | left: 18rem;
75 | top: 8rem;
76 | }
--------------------------------------------------------------------------------
/src/components/Navbar/Intro/Intro.css:
--------------------------------------------------------------------------------
1 | .intro{
2 | display: flex;
3 | height: 77vh;
4 | margin-top: 6rem;
5 | }
6 | .i-left{
7 | display: flex;
8 | position: relative;
9 | flex: 1;
10 | flex-direction: column;
11 | gap: 2rem;
12 | }
13 |
14 | .i-name{
15 | display: flex;
16 | flex-direction: column;
17 | }
18 | .i-name>:nth-child(1){
19 | color: var(--black);
20 | font-weight: bold;
21 | font-size: 3rem;
22 | }
23 | .i-name>:nth-child(2){
24 | color: var(--orange);
25 | font-weight: bold;
26 | font-size: 2.6rem;
27 | }
28 | .i-name>:nth-child(3){
29 | font-weight: 100;
30 | font-size: 14px;
31 | color: var(--gray);
32 | margin-top: 10px;
33 | }
34 | .i-button{
35 | width: 7rem;
36 | height: 3rem;
37 | }
38 | .i-icons{
39 | margin-top: 3rem;
40 | display: flex;
41 | gap: 0rem;
42 | }
43 | .i-icons>*{
44 | transform: scale(0.5);
45 | }
46 | .i-icons>*:hover{
47 | cursor: pointer;
48 | }
49 | .i-right{
50 | flex: 1;
51 | position: relative;
52 | }
53 | .i-right>*{
54 | position: absolute;
55 | z-index: 1;
56 | }
57 | .i-right>:nth-child(1){
58 | transform: scale(0.69);
59 | left:-15%;
60 | top: -9%;
61 | }
62 | .i-right>:nth-child(2){
63 | top: -4.6rem;
64 | transform: scale(0.67);
65 | left: -3rem;
66 | }
67 | .i-right>:nth-child(3){
68 | transform: scale(1.4);
69 | left: 28%;
70 | }
71 | .i-right>:nth-child(4){
72 | transform: scale(0.6);
73 | top: -19%;
74 | left: -24%;
75 | border-radius: 50%;
76 | padding: 0;
77 | }
78 | .blur{
79 | position: absolute;
80 | width: 22rem;
81 | height: 14rem;
82 | border-radius: 50%;
83 | background: #edd0ff;
84 | z-index: -9;
85 | top: -18%;
86 | left: 56%;
87 | filter: blur(72px);
88 | }
--------------------------------------------------------------------------------
/src/components/Services/Services.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import './Services.css'
3 | import HeartEmoji from "../../img/heartemoji.png"
4 | import Glasses from "../../img/glasses.png"
5 | import Humble from "../../img/humble.png"
6 | import Card from '../Card/Card'
7 | import Resume from './Resume.pdf'
8 | const Services = () => {
9 | return (
10 |
11 | {/* left side */}
12 |
13 |
My Awesome
14 |
Services
15 |
Lorem ipsum dolor sit amet consectetur adipisicing elit.
16 |
17 | soluta aliquid eveniet voluptatum expedita minus quos.
18 |
19 |
20 | Download CV
21 |
22 |
23 |
24 | {/* right side */}
25 |
26 |
27 |
31 |
32 | {/* second card */}
33 |
34 |
38 |
39 | {/* third card */}
40 |
41 |
45 |
46 |
47 |
48 |
49 | )
50 | }
51 |
52 | export default Services
--------------------------------------------------------------------------------
/src/components/Works/Works.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import './Works.css'
3 | import upwork from "../../img/Upwork.png"
4 | import fiverr from "../../img/fiverr.png"
5 | import amazon from "../../img/amazon.png"
6 | import shopify from "../../img/Shopify.png"
7 | import facebook from "../../img/Facebook.png"
8 | const Works = () => {
9 | return (
10 |
11 |
12 |
Works for All These
13 |
Brands & Clients
14 |
Lorem ipsum dolor sit amet consectetur adipisicing elit.
15 |
16 | soluta aliquid eveniet voluptatum expedita minus quos.
17 |
18 | Lorem ipsum dolor sit amet consectetur adipisicing elit.
19 |
20 | soluta aliquid eveniet voluptatum expedita minus quos.
21 |
22 |
Hire me
23 |
24 |
25 | {/* right side */}
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 | {/* background circle */}
45 |
46 |
47 |
48 |
49 | )
50 | }
51 |
52 | export default Works
--------------------------------------------------------------------------------
/src/components/Navbar/Intro/Intro.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import './Intro.css'
3 | import github from '../../../img/github.png'
4 | import linkedin from '../../../img/linkedin.png'
5 | import instagram from '../../../img/instagram.png'
6 | import vector1 from '../../../img/Vector1.png'
7 | import vector2 from '../../../img/Vector2.png'
8 | import boy from '../../../img/boy.png'
9 | import thumbup from '../../../img/thumbup.png'
10 | import crown from '../../../img/crown.png'
11 | import glassesimoji from '../../../img/glassesimoji.png'
12 | import FloatingDiv from '../../FloatingDiv/FloatingDiv'
13 | export default function () {
14 | return (
15 |
16 |
17 |
18 | Hy! I AM
19 | Muhammad Okasha
20 | Frontend Developer with high
21 | level of Experience in web development
22 | and designing, producting the
23 | Quality work.
24 |
25 |
Hire me
26 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 | {/* blurdiv */}
44 |
45 |
52 |
53 |
54 | )
55 | }
--------------------------------------------------------------------------------
/src/logo.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/components/Testimonials/Testimonial.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import "./Testimonial.css";
3 | import { Swiper, SwiperSlide } from "swiper/react";
4 |
5 | // Import necessary modules for Swiper
6 | import { Pagination } from "swiper/modules";
7 | import "swiper/css/pagination"; // Import Swiper pagination styles
8 | import profilepic1 from "../../img/profile1.jpg";
9 | import profilepic2 from "../../img/profile2.jpg";
10 | import profilepic3 from "../../img/profile3.jpg";
11 | import profilepic4 from "../../img/profile4.jpg";
12 |
13 | const Testimonial = () => {
14 | // Array of client data
15 | const clients = [
16 | {
17 | img: profilepic1,
18 | review:
19 | "lorem ispum dolor sit amet consectetur adipisicing elit. Quod itaque aperiam quos eaque quasi quas exercitationem",
20 | },
21 | {
22 | img: profilepic2,
23 | review:
24 | "lorem ispum dolor sit amet consectetur adipisicing elit. Quod itaque aperiam quos eaque quasi quas exercitationem",
25 | },
26 | {
27 | img: profilepic3,
28 | review:
29 | "lorem ispum dolor sit amet consectetur adipisicing elit. Quod itaque aperiam quos eaque quasi quas exercitationem",
30 | },
31 | {
32 | img: profilepic4,
33 | review:
34 | "lorem ispum dolor sit amet consectetur adipisicing elit. Quod itaque aperiam quos eaque quasi quas exercitationem",
35 | },
36 | ];
37 |
38 | return (
39 |
40 |
41 | {/* Heading for the testimonials section */}
42 |
Clients always get
43 |
Exceptional Work
44 |
from me...
45 | {/* Background blur elements */}
46 |
50 |
51 |
52 | {/* Swiper component for the testimonials */}
53 |
58 | {/* Mapping through the clients array to create Swiper slides */}
59 | {clients.map((client, index) => {
60 | return (
61 |
62 | {/* Display client's image */}
63 |
64 | {/* Display client's review */}
65 | {client.review}
66 |
67 | );
68 | })}
69 |
70 |
71 | );
72 | };
73 |
74 | export default Testimonial;
75 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------