diff --git a/src/components/projects/ListProjects.jsx b/src/components/projects/ListProjects.jsx index 99dc05b..135d4b3 100644 --- a/src/components/projects/ListProjects.jsx +++ b/src/components/projects/ListProjects.jsx @@ -72,14 +72,17 @@ function ListProjects({ classes }) { const cellStyling = isOdd(i) ? classnames(cellText) : classnames(cellText, classes.cellColor) const spaceClass = isOdd(i) ? nameSpacer : classnames(nameSpacer, cellColor) const creationDate = getDateFromTimestamp(creationTime) + const profileUrl = `/fund-project/${profileId}` return ( - {subtitle} + + {subtitle} + {creator} {creationDate} - + Read more diff --git a/src/components/projects/styles/ListProjects.js b/src/components/projects/styles/ListProjects.js index 0a3e0cb..ca8baa0 100644 --- a/src/components/projects/styles/ListProjects.js +++ b/src/components/projects/styles/ListProjects.js @@ -39,7 +39,8 @@ const styles = theme => ({ textAlign: 'center' }, cellDescription: { - fontSize: '1rem' + fontSize: '1rem', + textDecoration: 'none' }, cellColor: { background: '#F5F7F8'