-
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.
Co-authored-by: robpedersendev <40696979+robpedersendev@users.noreply.github.com> Co-authored-by: informagician <6990987+informagician@users.noreply.github.com> Co-authored-by: JameaKidrick <50430635+JameaKidrick@users.noreply.github.com> Co-authored-by: daisymesa <42687274+daisymesa@users.noreply.github.com>
- Loading branch information
1 parent
0a7c47f
commit 9a69390
Showing
9 changed files
with
593 additions
and
132 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,7 @@ | |
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
.env | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
|
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
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,109 @@ | ||
import React from 'react'; | ||
|
||
const About = () => { | ||
return ( | ||
<main className="about-page"> | ||
<h2 className="about-header">What is Le Cache?</h2> | ||
<div className="about-info"> | ||
<p> | ||
LeCache is a directory where you can find contact details | ||
for Lambda students and alumni.{' '} | ||
</p> | ||
<h3> | ||
<strong>What students can do: </strong> | ||
</h3> | ||
<ul> | ||
<li> | ||
Be featured on the site: Submit profile picture, | ||
location, portfolio, LinkedIn, and GitHub | ||
</li> | ||
<li>See examples of fellow students' work.</li> | ||
<li> | ||
Signal if they are willing to relocate for a role, | ||
passively open to new opportunities, or actively seeking | ||
new opportunities. | ||
</li> | ||
</ul> | ||
<h3> | ||
<strong>For Recruiters and Hiring Managers: </strong> | ||
</h3> | ||
<ul> | ||
<li> | ||
See the best and brightest that Lambda School has to | ||
offer.{' '} | ||
</li> | ||
<li> | ||
You can filter to specific tracks so you only see | ||
profiles relevant to you. | ||
</li> | ||
</ul> | ||
<h3> | ||
<strong>For Non-Lambda Students: </strong> | ||
</h3> | ||
<p> | ||
See what Lambda grads and students have built over their | ||
time while enrolled within their program.{' '} | ||
</p> | ||
<p> | ||
Inspired by <a href="">Latinx Who Design</a> by Pablo | ||
Stanley{' '} | ||
</p> | ||
</div> | ||
<div className="about-info about-second-div"> | ||
<h3> | ||
<strong>The Team</strong> | ||
</h3> | ||
<p> | ||
Le Cache was created during a Hackathon hosted by Lambda on | ||
January 2, 2020. | ||
</p> | ||
<div> | ||
<ul> | ||
<div> | ||
<li> | ||
<a href="">Eileen Cuevas</a> - Web Developer | ||
</li> | ||
<li> | ||
<a href="">Daisy Mesa</a> - Web Developer | ||
</li> | ||
<li> | ||
<a href="">Marc Dandoy</a> - UX/UI Designer | ||
</li> | ||
</div> | ||
<div> | ||
<li> | ||
<a href="">Milo Rastgoo</a> - Web Developer | ||
</li> | ||
<li> | ||
<a href="">Jamea Kidrick</a> - Web Developer | ||
</li> | ||
|
||
<li> | ||
<a href="">Laura Giron</a> - UX Designer / | ||
Project Manager | ||
</li> | ||
</div> | ||
|
||
<div> | ||
<li> | ||
<a href="">Robert Pedersen</a> - Web Developer | ||
</li> | ||
</div> | ||
</ul> | ||
</div> | ||
<hr className="divider" /> | ||
<div className="footer"> | ||
<a href=""> | ||
<h3> | ||
<strong> | ||
<span>←</span> Back to Directory | ||
</strong> | ||
</h3> | ||
</a> | ||
</div> | ||
</div> | ||
</main> | ||
); | ||
}; | ||
|
||
export default About; |
Oops, something went wrong.