Skip to content
Snippets Groups Projects
Commit f75c9c1f authored by rob's avatar rob
Browse files

Add global navbar to recruiter dashboard

parent fb154a51
No related branches found
No related tags found
6 merge requests!65Master,!50Change navigation buttons to reflect user feedback,!47fix profuction sort button flickering issue,!43Recruiter: Add staring and evidence ;Student: add Dashboard Timeline; Add univseral navbar,!36Create pages from mockups and link with Prisma Merge,!33Recruiter dashboard
Pipeline #423612 passed
......@@ -3,6 +3,7 @@
import "bootstrap/dist/css/bootstrap.min.css"
import { Nav, Button, ListGroup, Container, Navbar, Card, ListGroupItem } from "react-bootstrap";
import { Component, useEffect, useState } from "react";
import StudentNavbar from "../studentNavbar";
function RecruiterDashboard() {
......@@ -17,18 +18,7 @@ function RecruiterDashboard() {
return (
<main className="recruiterDashboard">
{/* Navigation Title Bar */}
<Navbar bg="light" expand="lg">
<Container>
<Container className="d-flex justify-content-start">
<Navbar.Brand>My Company</Navbar.Brand>
<Nav>
<Nav.Link href="/">Home</Nav.Link>
</Nav>
</Container>
<Button>Search</Button>
</Container>
</Navbar>
<StudentNavbar/>
{/* Job Listings List */}
<Container style={{height: "80vh"}}>
......@@ -38,9 +28,7 @@ function RecruiterDashboard() {
<h4>My Listings</h4>
<Button>New Post</Button>
</Card.Header>
<ApplicantList listings={listings}></ApplicantList>
<ApplicantList listings={listings}/>
</Card>
</Container>
</main>
......
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