From f5326f928d763ec547701183a3003487d382ec38 Mon Sep 17 00:00:00 2001 From: Alexander Khrushkov Date: Fri, 10 Jul 2026 16:56:25 +0300 Subject: [PATCH] fix(marketplace): neutral category chip + frameless logo on ProjectPage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - category chip no longer tinted with the project accentColor — dark accents (e.g. #000000) made it unreadable; neutral chip style matches the tag chips - drop the border-4 frame around ProjectLogo, mirroring the frame removal on the dev-portal/backoffice overview pages and the sphere-ui cards --- src/pages/ProjectPage.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/pages/ProjectPage.tsx b/src/pages/ProjectPage.tsx index e141cb19..9d2710be 100644 --- a/src/pages/ProjectPage.tsx +++ b/src/pages/ProjectPage.tsx @@ -282,9 +282,11 @@ export function ProjectPage() { {/* Logo — outside overflow-hidden container. Uses ProjectLogo for consistency with marketplace cards / desktop dock: - real uploaded logo fills the tile (no blik visible); a missing logo - falls back to a 2-letter monogram with the gradient blik visible. */} -
+ real uploaded logo renders un-cropped on the accent tile; a missing + logo falls back to a 2-letter monogram with gloss. + No frame around the tile — mirrors the border-4 removal on the + dev-portal/backoffice overview pages. */} +
{project.name}

{project.tagline}

- + {/* Neutral chip on purpose — accent-tinted text turns unreadable + with dark/low-contrast project accent colors. */} + {categoryLabels[project.category] ?? project.category} {project.tags.slice(0, 3).map((tag) => (