File size: 803 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
import { withPageAuthRequired } from "@auth0/nextjs-auth0/client";
import Layout from "../components/layout";
import { User } from "../interfaces";
type ProfileCardProps = {
user: User;
};
const ProfileCard = ({ user }: ProfileCardProps) => {
return (
<>
<h1>Profile</h1>
<div>
<h3>Profile (client rendered)</h3>
<img src={user.picture} alt="user picture" />
<p>nickname: {user.nickname}</p>
<p>name: {user.name}</p>
</div>
</>
);
};
const Profile = ({ user, isLoading }) => {
return (
<Layout user={user} loading={isLoading}>
{isLoading ? <>Loading...</> : <ProfileCard user={user} />}
</Layout>
);
};
// Protected route, checking user authentication client-side.(CSR)
export default withPageAuthRequired(Profile);
|