diff --git a/apps/web/src/app/(app)/me/history/page.tsx b/apps/web/src/app/(app)/me/history/page.tsx index 5af9227..7d7f6b6 100644 --- a/apps/web/src/app/(app)/me/history/page.tsx +++ b/apps/web/src/app/(app)/me/history/page.tsx @@ -2,7 +2,7 @@ import { Clock3 } from 'lucide-react'; import { cookies } from 'next/headers'; import { HistoryExportButton, HistoryInfiniteList } from '@/components/history'; import { SectionContent } from '@/components/section'; -import { P2GlassPanel, P2PageHero, P2Pill } from '@/components/p2'; +import { P2GlassPanel, P2PageHero } from '@/components/p2'; import { fetchHistory } from '@/lib/history/api'; export const metadata = { @@ -11,13 +11,6 @@ export const metadata = { export const dynamic = 'force-dynamic'; -const SOURCE_FILTERS = [ - { id: 'all', label: 'All sources', active: true }, - { id: 'preview', label: 'From a preview' }, - { id: 'playlist', label: 'From a playlist' }, - { id: 'album', label: 'From an album' }, -]; - export default async function HistoryPage() { const cookieStore = await cookies(); const cookieHeader = cookieStore.toString(); @@ -33,14 +26,7 @@ export default async function HistoryPage() { actions={} /> -
-
- {SOURCE_FILTERS.map((filter) => ( - - {filter.label} - - ))} -
+
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 + } />