mirror of
https://github.com/D4M13N-D3V/comissions-app-ui.git
synced 2025-03-13 07:45:07 +00:00
34 lines
803 B
TypeScript
34 lines
803 B
TypeScript
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);
|