diff --git a/apps/frontend/src/composables/featureFlags.ts b/apps/frontend/src/composables/featureFlags.ts
index e6a932590..b969c7fbc 100644
--- a/apps/frontend/src/composables/featureFlags.ts
+++ b/apps/frontend/src/composables/featureFlags.ts
@@ -30,6 +30,8 @@ export const DEFAULT_FEATURE_FLAGS = validateValues({
newProjectCards: false,
projectBackground: false,
searchBackground: false,
+ newProjectListUserPage: false,
+ projectCardBackground: false,
// advancedRendering: true,
// externalLinksNewTab: true,
// notUsingBlockers: false,
diff --git a/apps/frontend/src/pages/user/[id].vue b/apps/frontend/src/pages/user/[id].vue
index 8d1ff4abc..6b5e770be 100644
--- a/apps/frontend/src/pages/user/[id].vue
+++ b/apps/frontend/src/pages/user/[id].vue
@@ -121,154 +121,161 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
{{ formatMessage(messages.profileNoProjectsLabel) }}
-
-
+
+
+
+
+
+
+
+
+
+
+
+
{{ formatMessage(messages.profileNoProjectsLabel) }}
+
+
+
-
-
-
-
{{ collection.name }}
-
-
- Collection
+ :key="collection.id"
+ :to="`/collection/${collection.id}`"
+ class="card collection-item"
+ >
+
+
+
+
{{ collection.name }}
+
+
+ Collection
+
-
-
- {{ collection.description }}
-
-
-
+
+ {{ collection.description }}
+
+
+
{{
`${$formatNumber(collection.projects?.length || 0, false)} project${(collection.projects?.length || 0) !== 1 ? "s" : ""}`
}}
-
-
-
- Public
-
-
-
- Unlisted
-
-
-
- Private
-
-
-
- Rejected
-
+
+
+
+ Public
+
+
+
+ Unlisted
+
+
+
+ Private
+
+
+
+ Rejected
+
+
-
-
-
-
+
+
+
+