-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #57 from Vero-Ventures/feature/prettier-landing-page
Separates footer component from web page for other use
- Loading branch information
Showing
2 changed files
with
42 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import React from 'react'; | ||
import Link from 'next/link'; | ||
|
||
function Footer() { | ||
return ( | ||
<footer className="bg-gray-900 p-6 md:py-12 w-full text-gray-50"> | ||
<div className="container max-w-7xl grid grid-cols-2 sm:grid-cols-3 md:grid-cols-5 gap-8 text-sm"> | ||
<div className="grid gap-1"> | ||
<h3 className="font-semibold">Company</h3> | ||
<Link href="#">About Us</Link> | ||
<Link href="#">Our Team</Link> | ||
<Link href="#">Careers</Link> | ||
<Link href="#">News</Link> | ||
</div> | ||
<div className="grid gap-1"> | ||
<h3 className="font-semibold">Job Sites</h3> | ||
<Link href="#">Indigenous</Link> | ||
<Link href="#">New Comers</Link> | ||
<Link href="#">People with Disabilities</Link> | ||
<Link href="#">Vulnerable Youth</Link> | ||
<Link href="#">Asylum-Refugees</Link> | ||
</div> | ||
<div className="grid gap-1"> | ||
<h3 className="font-semibold">Legal</h3> | ||
<Link href="#">Privacy Policy</Link> | ||
<Link href="#">Terms of Service</Link> | ||
<Link href="#">Cookie Policy</Link> | ||
</div> | ||
<div className="grid gap-1"> | ||
<h3 className="font-semibold">Contact</h3> | ||
<Link href="#">Support</Link> | ||
<Link href="#">Sales</Link> | ||
<Link href="#">Partnerships</Link> | ||
</div> | ||
</div> | ||
</footer> | ||
); | ||
} | ||
|
||
export default Footer; |