mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-10 20:36:39 +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
|
||||
|
||||
- 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)
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 31 KiB |
|
|
@ -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>
|
||||
);
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
"domain": "dev-fyjrvohx.auth0.com",
|
||||
"clientId": "bfkq2dOfei9pjxnrZvO1VRW5rZpwGG2X"
|
||||
"domain": "chefs-meal-planner.eu.auth0.com",
|
||||
"clientId": "EXe8HCfFd0jSSfqzjAvpdk72ce0y2Hh9"
|
||||
}
|
||||
Loading…
Reference in a new issue