Skip to content

Commit

Permalink
FeedPage placeholder ; #58
Browse files Browse the repository at this point in the history
  • Loading branch information
veeepi committed Apr 16, 2021
1 parent 3c56282 commit c0924b4
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 2 deletions.
16 changes: 14 additions & 2 deletions src/pages/FeedPage.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
import React from 'react'
import { dashStyles } from '../styles/dashStyles';
import Footer from '../containers/Footer';

export default function FeedPage({dataUser}) {
const classes = dashStyles();

return (
<div>
FEED
<div className={classes.container}>
<div>
Work in Progress

The Feed page is the Community component of this app.

Coaches can create Posts.
Coaches AND Clients can Like and Comment.
</div>
<Footer />
</div>
)
}
23 changes: 23 additions & 0 deletions src/styles/dashStyles.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,29 @@ const dashStyles = makeStyles(() => ({
backgroundColor: 'white',
borderRadius: 0.5,
},
// PROFILE ONLY
infoSection: {
width: '80%',
margin: '5% auto',
padding: '5% 10%',
display: 'flex',
flexDirection: 'column',
backgroundColor: holisticTheme.bgLight,
// alignItems: 'center',
},
infoBox: {
display: 'flex',
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-between',
},
title: {
fontStyle: 'italic',
},
infoValue: {
fontWeight: 'bold',
}

}));

const userListStyles = makeStyles(() => ({
Expand Down

0 comments on commit c0924b4

Please sign in to comment.