Skip to content

Commit

Permalink
landing
Browse files Browse the repository at this point in the history
  • Loading branch information
cgarciahdez committed May 26, 2017
1 parent ee44134 commit f134f30
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 8 deletions.
9 changes: 9 additions & 0 deletions client/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,15 @@ body{
min-width: 100px;
}

.about{
font-size: 1.5em;
}

.title{
margin-left: -50px !important;
font-size: 5em !important;
}


/*
.btn-default{
Expand Down
7 changes: 6 additions & 1 deletion imports/ui/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,12 @@ export default createContainer(() => {
email: emailsito
}
}
}).fetch(),
}).fetch().filter((obj)=>{
if (obj.owner===emailsito){
return false;
}
return true;
}),
groupsOwned: Groups.find({
owner: emailsito
}).fetch(),
Expand Down
16 changes: 9 additions & 7 deletions imports/ui/Landing.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,17 @@ export default class Landing extends Component {
render() {
return (
<div className='container-fluid landing'>
<div className='row landing-welcome'>
<h1>ActiveU</h1>
<p>¡Bienvenido a <b>ActiveU</b>! El lugar donde el campus universitario
se vuelve más interactivo. Buscamos conectar personas dentro del
campus para realizar diferentes actividades y mejorar la experiencia
universitaria.</p>
<div className='text-center row landing-welcome'>
<h1 className="title">ListHub </h1>
<img src="http://duckit.margffoy-tuay.com/static/checklist.svg"></img>
<br></br>
<br></br>
<br></br>
<p className="about">Welcome to <strong>ListHub!</strong> We want to make your life easier by providing you with the way to share
your lists. Make a group, add members, make your list and start checking off! ListHub is great for your family grocery lists and
to keep track of items to buy for parties. Login with your twitter, google, or facebook account to learn more! </p>
</div>
<div className='row landing-more'>
<h2>Conoce Más</h2>
</div>
</div>
);
Expand Down

0 comments on commit f134f30

Please sign in to comment.