ArcaneJaspr Codex
Documentation
ArcaneAuthorCard
Author attribution card with avatar, name, and role
Live Demo
JD
Jane Doe
Developer
JS
John Smith
Software Engineer
AJ
Alice Johnson
CEO & Founder

ArcaneAuthorCard#

An author attribution card component with avatar, name, and role for testimonials, blog posts, and team pages.

Basic Usage#

ArcaneAuthorCard(
  name: 'John Doe',
  role: 'Software Engineer',
  initials: 'JD',
)

Properties#

PropertyTypeDefaultDescription
nameStringrequiredAuthor name
role String? null Author role/title
avatarUrl String? null Avatar image URL
initials String? null Fallback initials
size AuthorCardSize md Card size
nameColor String? null Custom name color
roleColor String? null Custom role color
avatarBg String? null Avatar background color

Sizes#

// Small - 32px avatar
ArcaneAuthorCard.sm(
  name: 'Jane Doe',
  role: 'Developer',
  initials: 'JD',
)

// Medium (default) - 40px avatar
ArcaneAuthorCard(
  name: 'John Smith',
  role: 'Software Engineer',
  initials: 'JS',
)

// Large - 48px avatar
ArcaneAuthorCard.lg(
  name: 'Alice Johnson',
  role: 'CEO & Founder',
  initials: 'AJ',
)

Examples#

With Avatar Image#

ArcaneAuthorCard(
  avatarUrl: 'https://example.com/avatar.jpg',
  name: 'Sarah Wilson',
  role: 'Product Designer',
)

Testimonial Card#

ArcaneCard(
  children: [
    ArcaneText('"This product changed how we work."'),
    ArcaneSpacer(height: Spacing.md),
    ArcaneAuthorCard(
      name: 'Mike Chen',
      role: 'CTO at TechCorp',
      initials: 'MC',
    ),
  ],
)

Blog Post Attribution#

ArcaneRow(
  mainAxisAlignment: MainAxisAlignment.spaceBetween,
  children: [
    ArcaneAuthorCard.sm(
      avatarUrl: 'https://example.com/author.jpg',
      name: 'Emily Roberts',
      role: 'Tech Writer',
    ),
    ArcaneText('Dec 25, 2024'),
  ],
)

Team Grid#

ArcaneRow(
  gapSize: Gap.xl,
  children: [
    ArcaneAuthorCard.lg(
      initials: 'JD',
      name: 'John Doe',
      role: 'Founder',
    ),
    ArcaneAuthorCard.lg(
      initials: 'AS',
      name: 'Alice Smith',
      role: 'CTO',
    ),
    ArcaneAuthorCard.lg(
      initials: 'BJ',
      name: 'Bob Johnson',
      role: 'Lead Developer',
    ),
  ],
)