diff --git a/src/app/(user)/user/profiles/page.tsx b/src/app/(user)/user/profiles/page.tsx index 8aace3c..fbaee99 100644 --- a/src/app/(user)/user/profiles/page.tsx +++ b/src/app/(user)/user/profiles/page.tsx @@ -232,10 +232,10 @@ function ProfileCard({ profile, resolvedAvatarUrl }: ProfileCardProps) { : description || ''; return ( -
+
{/* Profile Image & View Profile Button */}
-
+
{getProfileImageUrl() ? ( /* eslint-disable-next-line @next/next/no-img-element */ {/* Header Row - Name, Verified, Match Badge */} -
+
{/* Name and Verified Badge */} -
+

{profile.firstName}{' '} {profile.lastName} @@ -298,13 +298,13 @@ function ProfileCard({ profile, resolvedAvatarUrl }: ProfileCardProps) {

{/* Match Badge */} -
+
95% Match
{/* Location & Member Since */} -
+
{location && (
- {/* Left Sidebar */} -
+ {/* Left Sidebar - hidden on mobile */} +
{/* Listing Type */}

Listing Type

@@ -634,7 +634,21 @@ function ProfilesPageContent() {
{/* Main Content */} -
+
+ {/* Mobile Filter Button - visible only on mobile */} +
+

Agent Profiles

+ +
+ {/* Search Bar */}
@@ -658,10 +672,10 @@ function ProfilesPageContent() {
{/* Agent Type Tabs */} -
+
)} @@ -330,23 +306,43 @@ export function CommonHeader() { )} {/* Mobile Menu Button */} -
+ + {/* Mobile Navigation Menu */} + {showMobileMenu && ( +
+ +
+ )} ); }