Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Applications Page #311

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions Apply-For-Me-UI/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,17 @@
"react": "^18.2.0",
"react-cookie-consent": "^8.0.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.40.0",
"react-icons": "^4.6.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.4.3",
"react-scripts": "5.0.1",
"react-spinners": "^0.13.7",
"react-toastify": "^9.1.1",
"spinners-react": "^1.0.7",
"web-vitals": "^2.1.4",
"yup": "^0.32.11"
},
"scripts": {
"start": "PORT=7000 react-scripts start",
"dev": "react-scripts start",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
Expand Down
2 changes: 1 addition & 1 deletion Apply-For-Me-UI/src/components/spinner/Spinner.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-disable no-unused-vars */
import React from "react";
import { useState } from "react";
import PuffLoader from "react-spinners/PuffLoader";
// import PuffLoader from "react-spinners/PuffLoader";
import classes from "./Spinner.module.css";
const Spinner = () => {
let [color] = useState("#2E3192");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,14 @@ td {
}

th {
width: 250px;
font-weight: 500;
font-size: 20px;
line-height: 150%;
}

td {
width: 250px;
font-weight: 400;
font-size: 16px;
line-height: 150%;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { HiOutlineChevronLeft, HiOutlineChevronRight } from "react-icons/hi2";
import styles from "../Applications.module.css";
import Dropdown from "./Dropdown";
import Search from "./search/Search";
Expand All @@ -9,6 +10,13 @@ const ApplicationsListHeader = () => {
<div>
<Dropdown />
</div>
<div className={styles.applications_footer}>
{/* <span>1-10/60</span> */}
<span>
<HiOutlineChevronLeft />
<HiOutlineChevronRight />
</span>
</div>
</div>
);
};
Expand Down
14 changes: 14 additions & 0 deletions Apply-For-Me-UI/src/pages/applications/components/Createjob.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import React from 'react'
impot

function Createjob() {
return (
<div className="jobcreation">
<p>Nothing to see here</p>
<button className="create_button">Create a job profile</button>
<p>to get started</p>
</div>
)
}

export default Createjob
10 changes: 1 addition & 9 deletions Apply-For-Me-UI/src/pages/applications/components/Table.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import styles from "../Applications.module.css";
import { HiOutlineChevronLeft, HiOutlineChevronRight } from "react-icons/hi2";
// import { HiOutlineChevronLeft, HiOutlineChevronRight } from "react-icons/hi2";
import { useNavigate } from "react-router-dom";
import ApplicationsListHeader from "./ApplicationsListHeader";
import axios from "axios";
Expand Down Expand Up @@ -69,14 +69,6 @@ const Table = () => {
</tbody>
</table>
</div>

<div className={styles.applications_footer}>
<span>1-10/60</span>
<span>
<HiOutlineChevronLeft />
<HiOutlineChevronRight />
</span>
</div>
</div>
);
};
Expand Down
10 changes: 10 additions & 0 deletions Apply-For-Me-UI/src/styles/Createjob.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
p {
font-family: 'Outfit';
font-style: normal;
font-weight: 400;
font-size: 24px;
line-height: 36px;
display: flex;
align-items: center;
color: #171B1D;
}