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

Add simple homepage with links to other pages

parent 33b879d5
No related branches found
No related tags found
8 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,!31Recruiter internship page,!28Master,!26Add simple homepage with links to other pages
Pipeline #422728 failed
'use client'
import Image from 'next/image'
import styles from './page.module.css'
import "bootstrap/dist/css/bootstrap.min.css"
import Nav from 'react-bootstrap/Nav';
import {Nav, Navbar, Container, Button} from 'react-bootstrap/'
export default function Home() {
return (
<main className={styles.main}>
<Nav justify activeKey="/home">
<Nav.Item><Nav.Link href="./studentDashboard">to studentDashboard</Nav.Link></Nav.Item>
<Nav.Item><Nav.Link href="./recruiterDashboard">to recruiterDashboard</Nav.Link></Nav.Item>
<Nav.Item>
<h1>Intern Hunting</h1>
</Nav.Item>
</Nav>
<main>
{/* Navigation Title Bar */}
<Navbar bg="light" expand="lg">
<Container className="d-flex justify-content-end">
<Button className="mx-1">Sign up</Button>
<Button className="mx-1">Log in</Button>
</Container>
</Navbar>
<Container className="mt-4">
<h1 className="text-center display-1">Intern Hunting</h1>
<Container className="my-2 w-50">
<p className="text-center">
Enabling students and companies to communicate more effectively when
offering internships, making it a less time-consuming process while
offering clearer details on available positions and providing
feedback to applicants.
</p>
</Container>
<Container className="my-5 d-flex justify-content-center">
<Button className="mx-4" href="./studentDashboard">Student Dashboard</Button>
<Button className="mx-4" href="./recruiterDashboard">Recruiter Dashboard</Button>
</Container>
</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