Filter by:
64 | 65 | 222 |
-
236 | {/* //* Uncomment this when an app starts */}
237 | {all_jobs.map((curElem) => {
238 | return
├── .gitignore ├── .npmrc ├── Client ├── .npmrc ├── build │ ├── favicon.ico │ ├── static │ │ ├── media │ │ │ ├── 1.c8d0a91f56308d85d671.png │ │ │ ├── s1.d188ee8ecd63e9f254da.jpg │ │ │ ├── s2.6c3a0fe2972d6b7d302a.jpg │ │ │ ├── s3.6af90c49ed3ead48f32b.jpg │ │ │ ├── s4.af6c2349bff585218d85.jpg │ │ │ ├── FFHero.e177b3dcf2d8079f7777.jpg │ │ │ ├── PJImg.a5c9e3f030dedd161f19.jpg │ │ │ ├── bhanu.128f6fa3936a77691bc5.jpg │ │ │ ├── harsh.f73562890cfbf477cfef.jpg │ │ │ ├── osama.7bc61991c5c041b4fbe0.jpg │ │ │ ├── Features.e6e085e5cc62509c9481.png │ │ │ ├── card-bg.71550beb9e90b0170350.jpg │ │ │ ├── logistics.4d159b76b1bdfe5a8f33.jpg │ │ │ ├── accountant.76fdc2ac7417a91763b1.jpg │ │ │ ├── data_entry.5cf7fe547607d3a39fb9.png │ │ │ ├── glass-right.ea24b06211e2d2217247.png │ │ │ ├── graphic_design.58143d82fe784f1642fc.png │ │ │ ├── video_editing.d1cb7df110e127d85470.png │ │ │ ├── article_writing.73015a83047882b467b8.png │ │ │ ├── android_developer.cdf54b267c58f829b53c.png │ │ │ ├── freelansters-logo.3eb14736e8d3ce1c83e5.png │ │ │ └── freelansters-logo1.2c679b5600aeb404d11a.png │ │ └── js │ │ │ └── main.fe490bc1.js.LICENSE.txt │ ├── asset-manifest.json │ └── index.html ├── public │ ├── favicon.ico │ └── index.html ├── src │ ├── vercel.json │ ├── Components │ │ ├── GetHired.jsx │ │ ├── Logout.jsx │ │ ├── ProStars.jsx │ │ ├── FFlancer.jsx │ │ ├── ProfileData.jsx │ │ ├── GoToTop.jsx │ │ ├── Cards.jsx │ │ ├── Breadcrumb.jsx │ │ ├── Error.jsx │ │ ├── Hero.jsx │ │ ├── Footer.jsx │ │ ├── Cdata.jsx │ │ ├── SingleJob.jsx │ │ ├── ProfileCards.jsx │ │ ├── CateCards.css │ │ ├── PostJobs.jsx │ │ ├── Navbar.jsx │ │ ├── Profile.jsx │ │ ├── About.jsx │ │ ├── CateCards.jsx │ │ └── Filter.jsx │ ├── reducer │ │ ├── UseReducer.js │ │ ├── freelancerReducer.js │ │ ├── jobReducer.js │ │ └── filterReducer.js │ ├── Helpers │ │ └── FormatPrice.js │ ├── index.js │ ├── schemas │ │ └── index.jsx │ ├── Img │ │ └── imgindex.js │ ├── Styles │ │ ├── GlobalStyle.js │ │ └── Modal.scss │ ├── context │ │ ├── filtercontext.js │ │ ├── freelancercontext.js │ │ └── jobcontext.js │ ├── FindFreelancer.js │ ├── FindJobs.js │ ├── Routing.jsx │ ├── App.css │ └── Login.css ├── .gitignore └── package.json ├── Server ├── db │ └── conn.js ├── model │ ├── FFSchema.js │ ├── FJSchema.js │ ├── tempSchema.js │ └── userSchema.js ├── middleware │ └── authenticate.js ├── package.json ├── server.js ├── .gitignore └── router │ └── auth.js ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true 2 | -------------------------------------------------------------------------------- /Client/.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true 2 | -------------------------------------------------------------------------------- /Client/build/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhanu1776/Freelansters/HEAD/Client/build/favicon.ico -------------------------------------------------------------------------------- /Client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhanu1776/Freelansters/HEAD/Client/public/favicon.ico -------------------------------------------------------------------------------- /Client/src/vercel.json: -------------------------------------------------------------------------------- 1 | { 2 | "rewrites": [{ 3 | "source": "/(.*)", 4 | "destination": "/" }] 5 | } -------------------------------------------------------------------------------- /Client/build/static/media/1.c8d0a91f56308d85d671.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhanu1776/Freelansters/HEAD/Client/build/static/media/1.c8d0a91f56308d85d671.png -------------------------------------------------------------------------------- /Client/build/static/media/s1.d188ee8ecd63e9f254da.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhanu1776/Freelansters/HEAD/Client/build/static/media/s1.d188ee8ecd63e9f254da.jpg -------------------------------------------------------------------------------- /Client/build/static/media/s2.6c3a0fe2972d6b7d302a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhanu1776/Freelansters/HEAD/Client/build/static/media/s2.6c3a0fe2972d6b7d302a.jpg -------------------------------------------------------------------------------- /Client/build/static/media/s3.6af90c49ed3ead48f32b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhanu1776/Freelansters/HEAD/Client/build/static/media/s3.6af90c49ed3ead48f32b.jpg -------------------------------------------------------------------------------- /Client/build/static/media/s4.af6c2349bff585218d85.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhanu1776/Freelansters/HEAD/Client/build/static/media/s4.af6c2349bff585218d85.jpg -------------------------------------------------------------------------------- /Client/build/static/media/FFHero.e177b3dcf2d8079f7777.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhanu1776/Freelansters/HEAD/Client/build/static/media/FFHero.e177b3dcf2d8079f7777.jpg -------------------------------------------------------------------------------- /Client/build/static/media/PJImg.a5c9e3f030dedd161f19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhanu1776/Freelansters/HEAD/Client/build/static/media/PJImg.a5c9e3f030dedd161f19.jpg -------------------------------------------------------------------------------- /Client/build/static/media/bhanu.128f6fa3936a77691bc5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhanu1776/Freelansters/HEAD/Client/build/static/media/bhanu.128f6fa3936a77691bc5.jpg -------------------------------------------------------------------------------- /Client/build/static/media/harsh.f73562890cfbf477cfef.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhanu1776/Freelansters/HEAD/Client/build/static/media/harsh.f73562890cfbf477cfef.jpg -------------------------------------------------------------------------------- /Client/build/static/media/osama.7bc61991c5c041b4fbe0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhanu1776/Freelansters/HEAD/Client/build/static/media/osama.7bc61991c5c041b4fbe0.jpg -------------------------------------------------------------------------------- /Client/build/static/media/Features.e6e085e5cc62509c9481.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhanu1776/Freelansters/HEAD/Client/build/static/media/Features.e6e085e5cc62509c9481.png -------------------------------------------------------------------------------- /Client/build/static/media/card-bg.71550beb9e90b0170350.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhanu1776/Freelansters/HEAD/Client/build/static/media/card-bg.71550beb9e90b0170350.jpg -------------------------------------------------------------------------------- /Client/build/static/media/logistics.4d159b76b1bdfe5a8f33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhanu1776/Freelansters/HEAD/Client/build/static/media/logistics.4d159b76b1bdfe5a8f33.jpg -------------------------------------------------------------------------------- /Client/build/static/media/accountant.76fdc2ac7417a91763b1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhanu1776/Freelansters/HEAD/Client/build/static/media/accountant.76fdc2ac7417a91763b1.jpg -------------------------------------------------------------------------------- /Client/build/static/media/data_entry.5cf7fe547607d3a39fb9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhanu1776/Freelansters/HEAD/Client/build/static/media/data_entry.5cf7fe547607d3a39fb9.png -------------------------------------------------------------------------------- /Client/build/static/media/glass-right.ea24b06211e2d2217247.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bhanu1776/Freelansters/HEAD/Client/build/static/media/glass-right.ea24b06211e2d2217247.png -------------------------------------------------------------------------------- /Client/src/Components/GetHired.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | 3 | const GetHired = () => { 4 | return
73 |
74 | 110 | Sorry, the page you're looking for cannot be accessed 111 |
112 | 113 | Home 114 | 115 |115 | {props.desc} 116 |
117 |Our Team
165 |
177 |
217 |
266 | 62 | Lorem ipsum, dolor sit amet consectetur adipisicing elit. 63 | Inventore, praesentium. 64 |
65 | {/* 66 | Learn More 67 | */} 68 |95 | Lorem ipsum, dolor sit amet consectetur adipisicing elit. 96 | Inventore, praesentium. 97 |
98 | {/* 99 | Learn More 100 | */} 101 |129 | Lorem ipsum, dolor sit amet consectetur adipisicing elit. 130 | Inventore, praesentium. 131 |
132 | 133 | Learn More 134 | 135 |162 | Lorem ipsum, dolor sit amet consectetur adipisicing elit. 163 | Inventore, praesentium. 164 |
165 | 166 | Learn More 167 | 168 |195 | Lorem ipsum, dolor sit amet consectetur adipisicing elit. 196 | Inventore, praesentium. 197 |
198 | 199 | Learn More 200 | 201 |228 | Lorem ipsum, dolor sit amet consectetur adipisicing elit. 229 | Inventore, praesentium. 230 |
231 | 232 | Learn More 233 | 234 |262 | Lorem ipsum, dolor sit amet consectetur adipisicing elit. 263 | Inventore, praesentium. 264 |
265 | 266 | Learn More 267 | 268 |