Skip to content
Snippets Groups Projects
Commit 79920c4b authored by tyw21's avatar tyw21
Browse files

Added job list

parent 8b2eb1ec
No related branches found
No related tags found
2 merge requests!11Add Minimal std/rectr dashboard to production,!10Add minimal student and recruiter dashboard
Pipeline #419517 passed
'use client'
import "bootstrap/dist/css/bootstrap.min.css"
import Accordion from 'react-bootstrap/Accordion';
import Form from 'react-bootstrap/Form';
import Nav from 'react-bootstrap/Nav';
import Button from 'react-bootstrap/Button';
import { ListGroup } from "react-bootstrap";
function recruiterDashboard() {
const handleClick = () => {
alert("Going to Intern Page!")
}
return (
<main className="recruiterDashboard">
<Nav justify activeKey="/home">
<Nav.Item><Nav.Link href="./studentDashboard">to studentDashboard</Nav.Link></Nav.Item>
<Nav.Item>
<h1>Job Listings</h1>
</Nav.Item>
<Nav.Item><Button>New Listing</Button></Nav.Item>
</Nav>
<ListGroup>
<ListGroup.Item>
<Nav justify onClick={handleClick} >
<Nav.Item>Open</Nav.Item>
<Nav.Item>IT Intern</Nav.Item>
<Nav.Item>3/50 Remaining</Nav.Item>
</Nav>
</ListGroup.Item>
<ListGroup.Item>
<Nav justify onClick={handleClick}>
<Nav.Item>Closed</Nav.Item>
<Nav.Item>Software Engineer Intern</Nav.Item>
<Nav.Item>30/50 Remaining</Nav.Item>
</Nav>
</ListGroup.Item>
<ListGroup.Item>
<Nav justify onClick={handleClick}>
<Nav.Item>Draft</Nav.Item>
<Nav.Item>Manangement Intern</Nav.Item>
<Nav.Item></Nav.Item>
</Nav>
</ListGroup.Item>
</ListGroup>
</main>
);
}
export default recruiterDashboard;
\ No newline at end of file
recruiterDashboard {
margin: 5px;
}
clickable {
cursor: pointer;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment