├── .gitignore ├── LICENSE ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── index.css ├── index.js ├── layouts ├── AboutUsLayout.jsx ├── ButtonsOfEdit.jsx ├── ButtonsOfPagination.jsx ├── CandidateLayout.jsx ├── Dashboard.jsx ├── DateLabel.jsx ├── EmployerLayout.jsx ├── FavotireJobPostingLayout.jsx ├── Footer.jsx ├── GithubButton.jsx ├── Headline.jsx ├── HighlightedContent.jsx ├── HomeLayout.jsx ├── JobPostingLayout.jsx ├── LanguageLevelIcons.jsx ├── LinkedinButton.jsx ├── LogIn.jsx ├── MessageModal.jsx ├── Navi.jsx ├── SignUp.jsx ├── ViewAllJobPostingsByPostingDate.jsx └── adminLayouts │ ├── AdminLayout.jsx │ └── CardOfConfirm.jsx ├── logo.svg ├── pages ├── CandidateAdd.jsx ├── CandidateDetail.jsx ├── CandidateList.jsx ├── CandidateUpdate.jsx ├── CoverLetterAdd.jsx ├── CoverLetterEdit.jsx ├── EducationAdd.jsx ├── EducationDelete.jsx ├── EmployerAdd.jsx ├── EmployerDetail.jsx ├── EmployerList.jsx ├── EmployerUpdate.jsx ├── ExperienceAdd.jsx ├── ExperienceDelete.jsx ├── JobPostingAdd.jsx ├── JobPostingDetail.jsx ├── JobPostingList.jsx ├── LanguageLevelAdd.jsx ├── LanguageLevelDelete.jsx ├── LinkAdd.jsx ├── LinkDelete.jsx ├── ResumeDetailsEdit.jsx ├── SkillAdd.jsx ├── SkillDelete.jsx └── adminPages │ ├── AppDetailsEdit.jsx │ ├── CityAdd.jsx │ ├── CityUpdate.jsx │ ├── CompanyStaffAdd.jsx │ ├── CompanyStaffUpdate.jsx │ ├── CompanyStaffUpdateButton.jsx │ ├── Confirm.jsx │ ├── JobTitleAdd.jsx │ ├── JobTitleUpdate.jsx │ ├── LanguageAdd.jsx │ ├── LanguageUpdate.jsx │ ├── LevelAdd.jsx │ ├── LevelUpdate.jsx │ ├── LinkNameAdd.jsx │ ├── LinkNameUpdate.jsx │ ├── WorkingTimeAdd.jsx │ ├── WorkingTimeUpdate.jsx │ ├── WorkingTypeAdd.jsx │ └── WorkingTypeUpdate.jsx ├── reportWebVitals.js ├── services ├── authService.js ├── candidateService.js ├── cityService.js ├── companyStaffService.js ├── coverLetterService.js ├── educationService.js ├── employerService.js ├── experienceService.js ├── favoriteJobPostingService.js ├── jobPostingService.js ├── jobTitleService.js ├── languageLevelService.js ├── languageService.js ├── levelService.js ├── linkNameService.js ├── linkService.js ├── resumeService.js ├── skillService.js ├── updatedEmployerService.js ├── userActivationService.js ├── workingTimeService.js └── workingTypeService.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 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License 2 | 3 | Copyright (c) 2021, Merve Üçer. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining 6 | a copy of this software and associated documentation files (the "Software"), 7 | to deal in the Software without restriction, including without limitation 8 | the rights to use, copy, modify, merge, publish, distribute, sublicense, 9 | and/or sell copies of the Software, and to permit persons to whom 10 | the Software is furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 18 | THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR 19 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 20 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 21 | OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 📷 Web App Screenshots (% 125) 2 | 3 | ![home](https://res.cloudinary.com/merveucer/image/upload/v1632492138/gitHub/home_aojxni.png) 4 | 5 | --- 6 | 7 | ![signUp](https://res.cloudinary.com/merveucer/image/upload/v1632492139/gitHub/signUp_feemt8.png) 8 | 9 | --- 10 | 11 | ![candidateSignUp](https://res.cloudinary.com/merveucer/image/upload/v1632492135/gitHub/candidateSignUp_ihegn0.png) 12 | 13 | --- 14 | 15 | ![jobPostings](https://res.cloudinary.com/merveucer/image/upload/v1632492139/gitHub/jobPostings_kewets.png) 16 | 17 | --- 18 | 19 | ![jobPosting](https://res.cloudinary.com/merveucer/image/upload/v1632492137/gitHub/jobPosting_sirpum.png) 20 | 21 | --- 22 | 23 | ![candidates](https://res.cloudinary.com/merveucer/image/upload/v1632492135/gitHub/candidates_wwdolb.png) 24 | 25 | --- 26 | 27 | ![candidate](https://res.cloudinary.com/merveucer/image/upload/v1632898092/gitHub/candidate_u1stre.png) 28 | 29 | --- 30 | 31 | ![favoriteJobPostings](https://res.cloudinary.com/merveucer/image/upload/v1632492137/gitHub/favoriteJobPostings_mpvcqp.png) 32 | 33 | --- 34 | 35 | ![editResumeDetails](https://res.cloudinary.com/merveucer/image/upload/v1632492136/gitHub/editResumeDetails_lmfv5m.png) 36 | 37 | --- 38 | 39 | ![deleteLink](https://res.cloudinary.com/merveucer/image/upload/v1632492136/gitHub/deleteLink_xnjee9.png) 40 | 41 | --- 42 | 43 | ![editCoverLetter](https://res.cloudinary.com/merveucer/image/upload/v1632492136/gitHub/editCoverLetter_jjvxza.png) 44 | 45 | --- 46 | 47 | ![deleteLanguage](https://res.cloudinary.com/merveucer/image/upload/v1632492136/gitHub/deleteLanguage_klyl9v.png) 48 | 49 | --- 50 | 51 | ![employers](https://res.cloudinary.com/merveucer/image/upload/v1632492137/gitHub/employers_pjfkry.png) 52 | 53 | --- 54 | 55 | ![employer](https://res.cloudinary.com/merveucer/image/upload/v1632492136/gitHub/employer_iwrfji.png) 56 | 57 | --- 58 | 59 | ![postAJob](https://res.cloudinary.com/merveucer/image/upload/v1632890708/gitHub/postAJob_ituncv.png) 60 | 61 | --- 62 | 63 | ![updateEmployer](https://res.cloudinary.com/merveucer/image/upload/v1632492139/gitHub/updateEmployer_churcn.png) 64 | 65 | --- 66 | 67 | ![updateEmployerMessage](https://res.cloudinary.com/merveucer/image/upload/v1632492738/gitHub/updateEmployerMessage_mfmcyf.png) 68 | 69 | --- 70 | 71 | ![adminPanel](https://res.cloudinary.com/merveucer/image/upload/v1632492134/gitHub/adminPanel_ucwqas.png) 72 | 73 | --- 74 | 75 | ![confirmations](https://res.cloudinary.com/merveucer/image/upload/v1632492135/gitHub/confirmations_knwmal.png) 76 | 77 | # Getting Started with Create React App 78 | 79 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). 80 | 81 | ## Available Scripts 82 | 83 | In the project directory, you can run: 84 | 85 | ### `npm start` 86 | 87 | Runs the app in the development mode.\ 88 | Open [http://localhost:3000](http://localhost:3000) to view it in the browser. 89 | 90 | The page will reload if you make edits.\ 91 | You will also see any lint errors in the console. 92 | 93 | ### `npm test` 94 | 95 | Launches the test runner in the interactive watch mode.\ 96 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. 97 | 98 | ### `npm run build` 99 | 100 | Builds the app for production to the `build` folder.\ 101 | It correctly bundles React in production mode and optimizes the build for the best performance. 102 | 103 | The build is minified and the filenames include the hashes.\ 104 | Your app is ready to be deployed! 105 | 106 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. 107 | 108 | ### `npm run eject` 109 | 110 | **Note: this is a one-way operation. Once you `eject`, you can’t go back!** 111 | 112 | 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. 113 | 114 | 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. 115 | 116 | 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. 117 | 118 | ## Learn More 119 | 120 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). 121 | 122 | To learn React, check out the [React documentation](https://reactjs.org/). 123 | 124 | ### Code Splitting 125 | 126 | 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) 127 | 128 | ### Analyzing the Bundle Size 129 | 130 | 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) 131 | 132 | ### Making a Progressive Web App 133 | 134 | 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) 135 | 136 | ### Advanced Configuration 137 | 138 | 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) 139 | 140 | ### Deployment 141 | 142 | This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) 143 | 144 | ### `npm run build` fails to minify 145 | 146 | 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) -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hrms", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@testing-library/jest-dom": "^5.14.1", 7 | "@testing-library/react": "^11.2.7", 8 | "@testing-library/user-event": "^12.8.3", 9 | "axios": "^0.21.1", 10 | "formik": "^2.2.9", 11 | "react": "^17.0.2", 12 | "react-dom": "^17.0.2", 13 | "react-router-dom": "^5.2.0", 14 | "react-scripts": "4.0.3", 15 | "semantic-ui-css": "^2.4.1", 16 | "semantic-ui-react": "^2.0.3", 17 | "web-vitals": "^1.1.2", 18 | "yup": "^0.32.9" 19 | }, 20 | "scripts": { 21 | "start": "react-scripts start", 22 | "build": "react-scripts build", 23 | "test": "react-scripts test", 24 | "eject": "react-scripts eject" 25 | }, 26 | "eslintConfig": { 27 | "extends": [ 28 | "react-app", 29 | "react-app/jest" 30 | ] 31 | }, 32 | "browserslist": { 33 | "production": [ 34 | ">0.2%", 35 | "not dead", 36 | "not op_mini all" 37 | ], 38 | "development": [ 39 | "last 1 chrome version", 40 | "last 1 firefox version", 41 | "last 1 safari version" 42 | ] 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/731d6e895fd5aa35f66a1300f69a50fac10dc4f0/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 15 | 16 | 25 | React App 26 | 27 | 28 | 29 | 30 |
31 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/731d6e895fd5aa35f66a1300f69a50fac10dc4f0/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merveucer/hrms-frontend/731d6e895fd5aa35f66a1300f69a50fac10dc4f0/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | @import url(https://fonts.googleapis.com/css?family=Montserrat&display=swap); /* montserrat */ 2 | @import url(https://use.typekit.net/jur8lgk.css); /* orbitron, shuriken-std */ 3 | 4 | .ui { 5 | font-family: montserrat, sans-serif !important; 6 | } 7 | 8 | .ui.dashboard.container { 9 | margin-top: 3em; 10 | } 11 | 12 | .ui.content.container { 13 | margin-top: 6em; 14 | margin-bottom: 2.6em; 15 | } 16 | 17 | .ui.footer.container { 18 | margin-top: 3.5em; 19 | } 20 | 21 | .ui.headline.container { 22 | margin-top: 7em; 23 | margin-bottom: 1.8em; 24 | } 25 | 26 | .ui.view-all-job-postings-by-posting-date.container { 27 | margin-top: 3.5em; 28 | margin-bottom: 3.5em; 29 | } 30 | 31 | .ui.button { 32 | font-family: orbitron, sans-serif !important; 33 | } 34 | 35 | .montserrat { 36 | font-family: montserrat, sans-serif !important; 37 | } 38 | 39 | .orbitron { 40 | font-family: orbitron, sans-serif !important; 41 | } 42 | 43 | .headline-1 { 44 | font-family: shuriken-std, sans-serif !important; 45 | font-size: 470%; 46 | font-style: normal; 47 | } 48 | 49 | .headline-2 { 50 | font-family: shuriken-std, sans-serif !important; 51 | font-size: 870%; 52 | font-style: normal; 53 | } 54 | 55 | .detail-header { 56 | font-family: orbitron, sans-serif !important; 57 | font-size: 130%; 58 | } 59 | 60 | .date { 61 | float: right; 62 | margin-bottom: 1em; 63 | } 64 | 65 | .extra { 66 | color: darkgrey; 67 | } 68 | 69 | .or { 70 | font-family: orbitron, sans-serif !important; 71 | color: white; 72 | text-align: center; 73 | } 74 | 75 | .coverLetterEdit { 76 | margin-bottom: 1em; 77 | } 78 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import "./App.css"; 2 | import "semantic-ui-css/semantic.min.css"; 3 | import Dashboard from "./layouts/Dashboard"; 4 | 5 | function App() { 6 | return ( 7 |
8 | 9 |
10 | ); 11 | } 12 | 13 | export default App; 14 | -------------------------------------------------------------------------------- /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/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/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import { BrowserRouter } from 'react-router-dom'; 4 | import './index.css'; 5 | import App from './App'; 6 | import reportWebVitals from './reportWebVitals'; 7 | 8 | 9 | ReactDOM.render( 10 | , 11 | document.getElementById('root') 12 | ); 13 | 14 | // If you want to start measuring performance in your app, pass a function 15 | // to log results (for example: reportWebVitals(console.log)) 16 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals 17 | reportWebVitals(); 18 | -------------------------------------------------------------------------------- /src/layouts/AboutUsLayout.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Headline from "./Headline"; 3 | import { Container, Header, Grid } from "semantic-ui-react"; 4 | 5 | export default function AboutUsLayout() { 6 | return ( 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 |             17 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do 18 | eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem 19 | ipsum dolor sit amet consectetur adipiscing elit pellentesque. 20 | Enim sed faucibus turpis in eu mi. Amet risus nullam eget felis 21 | eget nunc lobortis mattis aliquam. Mauris augue neque gravida in 22 | fermentum et sollicitudin ac orci. Amet nulla facilisi morbi 23 | tempus iaculis urna id volutpat lacus. Dignissim diam quis enim 24 | lobortis scelerisque fermentum dui faucibus. Mauris pharetra et 25 | ultrices neque. Diam volutpat commodo sed egestas egestas 26 | fringilla phasellus. Donec adipiscing tristique risus nec feugiat. 27 | Scelerisque mauris pellentesque pulvinar pellentesque habitant 28 | morbi tristique senectus et. Mauris commodo quis imperdiet massa 29 | tincidunt. Facilisi nullam vehicula ipsum a. Amet nisl suscipit 30 | adipiscing bibendum est. 31 |
32 |
33 |             34 | Elit duis tristique sollicitudin nibh sit. Vitae proin sagittis 35 | nisl rhoncus mattis. Mus mauris vitae ultricies leo integer 36 | malesuada nunc. Eget gravida cum sociis natoque penatibus et 37 | magnis dis parturient. Ut placerat orci nulla pellentesque 38 | dignissim enim sit amet. Neque sodales ut etiam sit amet. 39 | Condimentum vitae sapien pellentesque habitant morbi tristique. 40 | Nunc sed blandit libero volutpat. Porttitor lacus luctus accumsan 41 | tortor. Ante metus dictum at tempor commodo ullamcorper a lacus. 42 | Augue interdum velit euismod in pellentesque massa. 43 |
44 |
45 |             46 | Orci eu lobortis elementum nibh tellus molestie nunc non. 47 | Adipiscing elit ut aliquam purus sit amet luctus venenatis lectus. 48 | Arcu dui vivamus arcu felis bibendum ut tristique. Nisl pretium 49 | fusce id velit ut tortor pretium. Diam donec adipiscing tristique 50 | risus nec. Pretium quam vulputate dignissim suspendisse in. Est 51 | ultricies integer quis auctor elit sed vulputate mi sit. Nulla 52 | facilisi cras fermentum odio eu feugiat pretium nibh. Pharetra 53 | magna ac placerat vestibulum lectus mauris ultrices. Adipiscing 54 | diam donec adipiscing tristique risus. Nulla aliquet enim tortor 55 | at. Adipiscing vitae proin sagittis nisl. Et egestas quis ipsum 56 | suspendisse ultrices gravida. Ipsum a arcu cursus vitae. Sit amet 57 | tellus cras adipiscing enim. Tempus urna et pharetra pharetra 58 | massa. Tincidunt tortor aliquam nulla facilisi cras fermentum odio 59 | eu. Cursus mattis molestie a iaculis at. 60 |
61 |
62 |             63 | Arcu odio ut sem nulla pharetra diam. At erat pellentesque 64 | adipiscing commodo elit at imperdiet dui accumsan. Tristique et 65 | egestas quis ipsum suspendisse ultrices gravida. Pharetra 66 | convallis posuere morbi leo urna molestie at. Duis at consectetur 67 | lorem donec massa sapien faucibus. Pellentesque habitant morbi 68 | tristique senectus. Massa vitae tortor condimentum lacinia quis 69 | vel. At in tellus integer feugiat scelerisque varius morbi enim 70 | nunc. Vitae elementum curabitur vitae nunc. Ultricies mi quis 71 | hendrerit dolor magna eget. Scelerisque purus semper eget duis. 72 | Rhoncus aenean vel elit scelerisque mauris pellentesque pulvinar. 73 | Sed odio morbi quis commodo odio. Natoque penatibus et magnis dis. 74 | Arcu odio ut sem nulla pharetra diam sit. Tempus egestas sed sed 75 | risus pretium quam vulputate. Ac turpis egestas sed tempus. Nunc 76 | eget lorem dolor sed viverra ipsum nunc. 77 |
78 |
79 |             80 | Nunc eget lorem dolor sed viverra ipsum. Nec ultrices dui sapien 81 | eget mi proin sed libero enim. Feugiat nisl pretium fusce id velit 82 | ut. Nunc mattis enim ut tellus elementum sagittis vitae. Convallis 83 | tellus id interdum velit laoreet id donec ultrices. Nisl vel 84 | pretium lectus quam id leo in vitae turpis. Quam elementum 85 | pulvinar etiam non quam lacus suspendisse. Accumsan sit amet nulla 86 | facilisi. Volutpat odio facilisis mauris sit amet massa vitae 87 | tortor. Mauris cursus mattis molestie a iaculis. Non odio euismod 88 | lacinia at quis risus. 89 | 90 | 91 | 92 | 93 | 94 |
95 | ); 96 | } 97 | -------------------------------------------------------------------------------- /src/layouts/ButtonsOfEdit.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { NavLink } from "react-router-dom"; 3 | import { Grid, Button } from "semantic-ui-react"; 4 | 5 | export default function ButtonsOfEdit({ content, firstIcon, secondIcon, firstTo, secondTo }) { 6 | return ( 7 | 8 | 9 | 10 | 47 | 48 | 49 | 50 | or 51 | 52 | 53 | 54 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | ); 70 | } 71 | -------------------------------------------------------------------------------- /src/layouts/MessageModal.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { Modal, Header, Icon } from "semantic-ui-react"; 3 | 4 | export default function MessageModal({ onClose, onOpen, open, content }) { 5 | return ( 6 | 14 |
15 | 16 | {content} 17 |
18 |
19 | ); 20 | } 21 | -------------------------------------------------------------------------------- /src/layouts/Navi.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { NavLink } from "react-router-dom"; 3 | import LogIn from "./LogIn"; 4 | import SignUp from "./SignUp"; 5 | import { Menu, Container, Header } from "semantic-ui-react"; 6 | 7 | export default function Navi() { 8 | return ( 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | ); 30 | } 31 | -------------------------------------------------------------------------------- /src/layouts/SignUp.jsx: -------------------------------------------------------------------------------- 1 | import React, { useState } from "react"; 2 | import { NavLink } from "react-router-dom"; 3 | import { Button, Grid, Header, Icon, Modal, Segment } from "semantic-ui-react"; 4 | 5 | export default function SignUp() { 6 | const [open, setOpen] = useState(false); 7 | 8 | const handleModal = (value) => { 9 | setOpen(value); 10 | }; 11 | 12 | return ( 13 | 14 |