diff --git a/src/app/(auth)/users/[username]/page.tsx b/src/app/(auth)/users/[username]/page.tsx
index 105f33a..0cb87db 100644
--- a/src/app/(auth)/users/[username]/page.tsx
+++ b/src/app/(auth)/users/[username]/page.tsx
@@ -74,6 +74,9 @@ export default async function UserPage({ params }: UserPageProps) {
@{user.username}
)}
+
+ {user.email}
+
Joined: {new Date(user.createdAt).toLocaleDateString()}
@@ -81,7 +84,7 @@ export default async function UserPage({ params }: UserPageProps) {
{user.emailVerified && (
Verified
@@ -91,25 +94,6 @@ export default async function UserPage({ params }: UserPageProps) {
- {/* Email Section */}
-
-
{t("email")}
-
-
- {user.email}
-
- {user.emailVerified ? (
-
- ✓ {t("verified")}
-
- ) : (
-
- {t("unverified")}
-
- )}
-
-
-
{/* Account Info */}
{t("accountInfo")}