Home / Function/ CardMeetingNotes() — ui Function Reference

CardMeetingNotes() — ui Function Reference

Architecture documentation for the CardMeetingNotes() function in card-example.tsx from the ui codebase.

Entity Profile

Dependency Diagram

graph TD
  13fd220c_3ca7_2a40_e464_05d4479b8fcb["CardMeetingNotes()"]
  87a19b49_f9c9_d0f6_82c8_bd14af27311a["card-example.tsx"]
  13fd220c_3ca7_2a40_e464_05d4479b8fcb -->|defined in| 87a19b49_f9c9_d0f6_82c8_bd14af27311a
  style 13fd220c_3ca7_2a40_e464_05d4479b8fcb fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

apps/v4/registry/bases/base/examples/card-example.tsx lines 101–163

function CardMeetingNotes() {
  return (
    <Example title="Meeting Notes">
      <Card className="mx-auto w-full max-w-sm">
        <CardHeader>
          <CardTitle>Meeting Notes</CardTitle>
          <CardDescription>
            Transcript from the meeting with the client.
          </CardDescription>
          <CardAction>
            <Button variant="outline" size="sm">
              <IconPlaceholder
                lucide="CaptionsIcon"
                tabler="IconTextCaption"
                hugeicons="TextCheckIcon"
                phosphor="TextTIcon"
                remixicon="RiTextWrap"
                data-icon="inline-start"
              />
              Transcribe
            </Button>
          </CardAction>
        </CardHeader>
        <CardContent>
          <p>
            Client requested dashboard redesign with focus on mobile
            responsiveness.
          </p>
          <ol className="mt-4 flex list-decimal flex-col gap-2 pl-6">
            <li>New analytics widgets for daily/weekly metrics</li>
            <li>Simplified navigation menu</li>
            <li>Dark mode support</li>
            <li>Timeline: 6 weeks</li>
            <li>Follow-up meeting scheduled for next Tuesday</li>
          </ol>
        </CardContent>
        <CardFooter>
          <AvatarGroup>
            <Avatar>
              <AvatarImage src="https://github.com/shadcn.png" alt="@shadcn" />
              <AvatarFallback>CN</AvatarFallback>
            </Avatar>
            <Avatar>
              <AvatarImage
                src="https://github.com/maxleiter.png"
                alt="@maxleiter"
              />
              <AvatarFallback>LR</AvatarFallback>
            </Avatar>
            <Avatar>
              <AvatarImage
                src="https://github.com/evilrabbit.png"
                alt="@evilrabbit"
              />
              <AvatarFallback>ER</AvatarFallback>
            </Avatar>
            <AvatarGroupCount>+8</AvatarGroupCount>
          </AvatarGroup>
        </CardFooter>
      </Card>
    </Example>
  )
}

Subdomains

Frequently Asked Questions

What does CardMeetingNotes() do?
CardMeetingNotes() is a function in the ui codebase, defined in apps/v4/registry/bases/base/examples/card-example.tsx.
Where is CardMeetingNotes() defined?
CardMeetingNotes() is defined in apps/v4/registry/bases/base/examples/card-example.tsx at line 101.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free