Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions app/login/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,14 @@ export default function LoginPage() {
{user.displayName?.split(" ")[0]?.toUpperCase() ||
"TRAINER"}
</h2>
<p className="mt-1 truncate text-2xl leading-none text-black">
{user.email}
</p>
<div className="mt-3">
<p
style={{ fontFamily: "system-ui, -apple-system, sans-serif" }}
className="inline-block max-w-full truncate rounded-xl border-2 border-white/30 bg-black px-4 py-2.5 text-sm font-medium leading-none text-white shadow-[3px_3px_0_rgba(0,0,0,0.4)] sm:px-6 sm:text-base"
>
{user.email?.toLowerCase()}
</p>
</div>
</div>
</div>
<div className="mt-7 flex flex-col gap-3">
Expand Down
Loading