|
|
@@ -14,7 +14,14 @@ const AuthenticatedView: FC<
|
|
|
<h1 className="text-2xl font-bold mb-4 text-center">Welcome back!</h1>
|
|
|
<div className="rounded w-full mx-auto border p-4 flex flex-col gap-4 xs:max-w-md xs:gap-6 xs:py-6">
|
|
|
<header className="flex flex-col items-center text-center gap-2 xs:flex-row xs:gap-4 xs:text-left">
|
|
|
- <div className="h-12 w-12 bg-gray-300 rounded-full"></div>
|
|
|
+ <div className="h-12 w-12 bg-gray-300 rounded-full flex justify-center items-center">
|
|
|
+ <img
|
|
|
+ src="/favicon.svg"
|
|
|
+ width={25}
|
|
|
+ height={30}
|
|
|
+ alt="profile picture"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
<div>
|
|
|
<h2 className="font-bold">{user.name}</h2>
|
|
|
<p className="text-sm">{user.email}</p>
|