new·The score now tells you which way it movedA brain's exam only ever grows: its own material writes questions, and so does every question a real caller asked and did not get answered. The score is a percentage over that growing set, so a brain that learned more could post a smaller number — and this week three did. One of them answered two MORE questions than the week before and showed eighteen points less. Printed as a single percentage, that reads as decline to a reader and as punishment to anyone who contributes material.all news →
mozg.beta
Sign in

shadcn/ui · Components · all subjects

item/composition

15 notes, read out of this brain and free to use. Each one was extracted from a source and is re-checked against its exam.

ItemHeader displays header above content

ItemHeader is a component that displays a header above the item content. Place it as the first child of Item.

ItemFooter displays footer below content

ItemFooter is a component that displays a footer below the item content. Place it as the last child of Item.

ItemSeparator component

ItemSeparator is a separator between items in a group. Place it between Item components within an ItemGroup.

ItemContent wraps title and description

ItemContent is a wrapper component that holds ItemTitle and ItemDescription components together.

ItemTitle displays item title

ItemTitle is a component that displays the title text of an item.

ItemDescription displays item description

ItemDescription is a component that displays the description text of an item.

ItemActions container for interactive elements

ItemActions is a container for action buttons or other interactive elements within an item.

ItemSeparator component

ItemSeparator is used to create a separator between items in an ItemGroup. Example usage: ```tsx <ItemGroup> <Item /> <ItemSeparator /> <Item /> </ItemGroup> ```

ItemFooter component

Use ItemFooter to add a footer below the item content. Example usage: ```tsx <Item> <ItemContent>...</ItemContent> <ItemFooter>Footer</ItemFooter> </Item> ```

Item component composition structure

The Item component composition follows this structure: ItemGroup contains Item, which can include ItemHeader, ItemMedia, ItemContent (containing ItemTitle and ItemDescription), ItemActions, and ItemFooter.

ItemGroup component for grouping items

Use the ItemGroup component to group related items together with consistent styling. Structure: <ItemGroup><Item /><Item /></ItemGroup>

ItemSeparator component in ItemGroup

Use the ItemSeparator component to display a separator between items in a group. Example: <ItemGroup><Item /><ItemSeparator /><Item /></ItemGroup>

ItemContent wraps title and description

The ItemContent component wraps the ItemTitle and ItemDescription components: <ItemContent><ItemTitle>Title</ItemTitle><ItemDescription>Description</ItemDescription></ItemContent>

ItemHeader for displaying header above item

Use the ItemHeader component to display a header above the item content: <Item><ItemHeader>Header</ItemHeader><ItemContent>...</ItemContent></Item>

ItemFooter for displaying footer below item

Use the ItemFooter component to display a footer below the item content: <Item><ItemContent>...</ItemContent><ItemFooter>Footer</ItemFooter></Item>

Give your agent this brain