Composing an overview page
An overview page is a record page read as a profile: who or what it is, what it adds up to, how it has been active, and what it made. Commons’ member page is the worked example.

- When the record is a person or a company, dress its name with an
avatar(a photo resource where there is one) and asubtitle— commons/resources.ts:41. - Always, use
header()for the head, never a custom section that draws the name a second time — commons/pages/member.ts:13. - When its figures are counted from other tables, declare
rollupsand show them in asummary; a count two references away takeswhose: 'post_id.author_id'— commons/resources.ts:37, member.ts:14. - When it has prose of its own (a bio, a description), a one-column
fieldssection after the figures — member.ts:15. - When it has a history over time, a
chartof its activity withwhoseand a reducedheight— member.ts:16. - When a dashboard section applies to one record, reuse it narrowed with
whose(“this account’s bookings”) — compass/pages/account.ts:14. - When what it made is the point (threads, posts), related lists with a
limitandempty: false, and no aside beside them — member.ts:19.
With no aside, the page runs the full width: a metric strip of three
(width: 'third') fits it; beside an aside, use the summary. The skeleton for
an operational record is Composing a record page.