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
- add sidenav on mobile
- send message after contact form validation (confirm to sender and msg+info to admin)
- code cleanup (props and refactoring)
- Back to top button
- Take a look at some components [here](http://react-materialize.github.io/react-materialize/?path=/story/css-grid--default)
- Breadcrumb
1. add sidenav on mobile
1. send message after contact form validation (confirm to sender and msg+info to admin)
1. Breadcrumb
1. code cleanup (props and refactoring)
1. Back to top button
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 className="container">
<img className="circle responsive-img" src={user.picture} alt="Avatar" />
<h2>{user.name}</h2>
<p>
<b>Email: </b>
{user.email}
</p>
{/* <code>{JSON.stringify(user, null, 2)}</code> */}
<div className="row">
<img
className="circle responsive-img"
src={user.picture}
alt="Avatar"
width="20%"
/>
<h2>{user.name}</h2>
<p>
<b>Email: </b>
{user.email}
</p>
{/* <code>{JSON.stringify(user, null, 2)}</code> */}
</div>
</div>
);
};

View file

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