From 6f7138f7f75d0660daa5f66d9388fba8220c579e Mon Sep 17 00:00:00 2001 From: dshal20 Date: Fri, 14 Nov 2025 02:02:26 -0500 Subject: [PATCH] feat: profile page design --- src/app/dashboard/page.tsx | 3 + src/app/profile/page.tsx | 373 +++++++++++++++++++++++++++++++++++++ 2 files changed, 376 insertions(+) create mode 100644 src/app/profile/page.tsx diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx index 2a14860..f38ae30 100644 --- a/src/app/dashboard/page.tsx +++ b/src/app/dashboard/page.tsx @@ -26,6 +26,9 @@ export default async function DashboardPage() { Home + + Profile +
+ + + + {/* Skills & Mastery Section */} +
+
+ +

+ Skills & Mastery +

+
+ + {/* Python Skill */} +
+
+ + Python + + + 85% + +
+
+
+
+
+ + {/* Java Skill */} +
+
+ + Java + + + 72% + +
+
+
+
+
+ + {/* C++ Skill */} +
+
+ + C++ + + + 68% + +
+
+
+
+
+
+
+ + {/* Right Column */} +
+ {/* Combined User Info and Detailed Info Section */} +
+ {/* Edit Profile Button */} + + + {/* Username */} +

+ {username} +

+ {/* Rank/Title */} +

+ Knight of the Coding Realm +

+ + {/* Statistics */} +
+ {/* Level */} +
+ + + Level + + + 42 + +
+ + {/* XP */} +
+ + + XP + + + 12,847 + +
+ + {/* Quests */} +
+ + + Quests + + + 127 + +
+
+ + {/* Detailed Info */} + {/* Class */} +
+
+
+ + Class + + + Python Warrior + +
+
+ + {/* Guild */} +
+
+
+ + Guild + + + The Algorithm Knights + +
+
+ + {/* Joined Quest */} +
+
+
+ + Joined Quest + + + {joinedDate} + +
+
+ + {/* Bio */} +
+
+
+ + Bio + + + A seasoned warrior in the realm of code, seeking legendary bugs to slay and epic features to build. Master of multiple languages and slayer of countless bugs. Ready for the next adventure! + +
+
+
+
+
+
+ + ); +} +