mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-12 13:26:45 +00:00
secrets
This commit is contained in:
parent
bce9407986
commit
99e61fdd74
4 changed files with 22 additions and 15 deletions
12
README.md
12
README.md
|
|
@ -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)
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 31 KiB |
|
|
@ -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>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
{
|
{
|
||||||
"domain": "dev-fyjrvohx.auth0.com",
|
"domain": "chefs-meal-planner.eu.auth0.com",
|
||||||
"clientId": "bfkq2dOfei9pjxnrZvO1VRW5rZpwGG2X"
|
"clientId": "EXe8HCfFd0jSSfqzjAvpdk72ce0y2Hh9"
|
||||||
}
|
}
|
||||||
Loading…
Reference in a new issue