Skip to content

Commit

Permalink
add photo and emails to contact us page
Browse files Browse the repository at this point in the history
  • Loading branch information
abianco3 committed Apr 27, 2017
1 parent f5f80b9 commit 03e745a
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 4 deletions.
Binary file added client/public/assets/turtles.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions client/public/styling.css
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,10 @@ a {
height: 100% !important;
}

.contactHeader {
text-align: center;
}

.scrollable.scrollable {
overflow: hidden;
overflow-y: scroll;
Expand Down
28 changes: 24 additions & 4 deletions client/src/components/ContactUs.jsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,32 @@
import React, { Component } from 'react';
import { Image, Grid, Container } from 'semantic-ui-react';

class ContactUs extends Component {

render() {
return(
<div>
Contact us at: xxxxx
</div>
return (
<Container>
<h1 className="contactHeader">Tenacious Turtles</h1>
<Grid stackable>
<Grid.Row columns={2}>
<Grid.Column>
<Image
src="assets/turtles.jpg"
/>
</Grid.Column>
<Grid.Column>
<h4 className="imageHeader">Alison Zhang</h4>
<a href="mailto:alisonzthu@gmail.com"><p>alisonzthu@gmail.com</p></a>
<h4 className="imageHeader">Bryan Nguyen</h4>
<a href="mailto:bryan.nguyen.a@gmail.com"><p>bryan.nguyen.a@gmail.com</p></a>
<h4 className="imageHeader">Winston Ku</h4>
<a href="mailto:wdku5791@gmail.com"><p>wdku5791@gmail.com</p></a>
<h4 className="imageHeader">Anthony Bianco</h4>
<a href="mailto:anthony.bianco3@gmail.com"><p>anthony.bianco3@gmail.com</p></a>
</Grid.Column>
</Grid.Row>
</Grid>
</Container>
);
}
}
Expand Down

0 comments on commit 03e745a

Please sign in to comment.