last {Math.min(initial.limit, initial.total)} of {initial.total.toLocaleString()} events
diff --git a/apps/web/src/app/(app)/me/page.tsx b/apps/web/src/app/(app)/me/page.tsx
index a668b05..7e597bb 100644
--- a/apps/web/src/app/(app)/me/page.tsx
+++ b/apps/web/src/app/(app)/me/page.tsx
@@ -38,7 +38,7 @@ export const dynamic = 'force-dynamic';
const CAPABILITY_TILES = [
{ href: '/catalog/tracks', icon: Headphones, label: 'Play previews', sub: '30-second previews' },
- { href: '/catalog', icon: Search, label: 'Browse catalog', sub: '180M tracks indexed' },
+ { href: '/catalog', icon: Search, label: 'Browse catalog', sub: 'Fuzzy catalog search' },
{
href: '/me/playlists',
icon: ListMusic,
@@ -252,7 +252,7 @@ export default async function OverviewPage() {
}
description={
totalPlays > 0
- ? `${totalPlays.toLocaleString()} plays and ${minutesListened.toLocaleString()} minutes captured from your real listening history. Jump back in below.`
+ ? `${totalPlays.toLocaleString()} plays and ${minutesListened.toLocaleString()} minutes across your top artists. Jump back in below.`
: 'Your listening cockpit: play previews, build history, inspect trends, and jump into playlists.'
}
actions={
@@ -282,7 +282,7 @@ export default async function OverviewPage() {
- Minutes listened · 30d
+ Minutes listened · top artists
diff --git a/apps/web/src/app/(app)/me/stats/top-artists/page.tsx b/apps/web/src/app/(app)/me/stats/top-artists/page.tsx
index 8548c31..d2ef78c 100644
--- a/apps/web/src/app/(app)/me/stats/top-artists/page.tsx
+++ b/apps/web/src/app/(app)/me/stats/top-artists/page.tsx
@@ -93,17 +93,9 @@ export default async function TopArtistsPage() {
title="Who's owning the hours."
description={`Ranked across ${totalPlays.toLocaleString()} plays and ${totalMinutes.toFixed(0)} minutes from your real listening history.`}
actions={
-
- {(['7d', '30d', '90d', '1y'] as const).map((period) => (
-
- {period}
-
- ))}
-
+
+ All time
+
}
/>