This commit is contained in:
Ruidy Nemausat 2020-02-01 16:24:33 +01:00
parent bce9407986
commit 99e61fdd74
4 changed files with 22 additions and 15 deletions

View file

@ -95,9 +95,9 @@ Free meal planner for cooks short on ideas! (like me …)
## TO DO ## TO DO
- add sidenav on mobile 1. add sidenav on mobile
- send message after contact form validation (confirm to sender and msg+info to admin) 1. send message after contact form validation (confirm to sender and msg+info to admin)
- code cleanup (props and refactoring) 1. Breadcrumb
- Back to top button 1. code cleanup (props and refactoring)
- Take a look at some components [here](http://react-materialize.github.io/react-materialize/?path=/story/css-grid--default) 1. Back to top button
- Breadcrumb 1. Take a look at some components [here](http://react-materialize.github.io/react-materialize/?path=/story/css-grid--default)

View file

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

View file

@ -11,13 +11,20 @@ export const Profile = () => {
</div> </div>
) : ( ) : (
<div className="container"> <div className="container">
<img className="circle responsive-img" src={user.picture} alt="Avatar" /> <div className="row">
<h2>{user.name}</h2> <img
<p> className="circle responsive-img"
<b>Email: </b> src={user.picture}
{user.email} alt="Avatar"
</p> width="20%"
{/* <code>{JSON.stringify(user, null, 2)}</code> */} />
<h2>{user.name}</h2>
<p>
<b>Email: </b>
{user.email}
</p>
{/* <code>{JSON.stringify(user, null, 2)}</code> */}
</div>
</div> </div>
); );
}; };

View file

@ -1,4 +1,4 @@
{ {
"domain": "dev-fyjrvohx.auth0.com", "domain": "chefs-meal-planner.eu.auth0.com",
"clientId": "bfkq2dOfei9pjxnrZvO1VRW5rZpwGG2X" "clientId": "EXe8HCfFd0jSSfqzjAvpdk72ce0y2Hh9"
} }