EditorialCard

Composable editorial card for article, interview, and media previews.

Quick Preview

May 8, 2023

Starting a Career in Web Design: Mauricio Tonon

Interview
ByWNgutor John

It's no secret: Awwwards Masterclasses believe that mentorship is essential and invaluable for creatives. In fact, our courses were explicitly designed for growth.

Read Article

Composition

Use the public subpath import and compose only the slots you need. EditorialCard does not set a max-width; place it in a grid, flex row, or width-constrained wrapper in the consuming layout.

EditorialCard
├── EditorialCardHeader
│   ├── EditorialCardMeta
│   └── EditorialCardTitle
├── EditorialCardMedia
│   ├── EditorialCardCategory
│   └── EditorialCardPlayButton
├── EditorialCardRating
├── EditorialCardAttribution
├── EditorialCardExcerpt
└── EditorialCardLink

Usage

import {
  EditorialCard,
  EditorialCardHeader,
  EditorialCardMedia,
  EditorialCardMeta,
  EditorialCardTitle,
} from "@giddaa-housing/ui/editorial-card";

<EditorialCard>
  <EditorialCardHeader>
    <EditorialCardMeta>May 8, 2023</EditorialCardMeta>
    <EditorialCardTitle>Starting a Career in Web Design</EditorialCardTitle>
  </EditorialCardHeader>
  <EditorialCardMedia />
</EditorialCard>;

Examples

Default Editorial Card

Use this as the starting point for article or interview previews.

May 8, 2023

Starting a Career in Web Design: Mauricio Tonon

Interview
ByWNgutor John

It's no secret: Awwwards Masterclasses believe that mentorship is essential and invaluable for creatives. In fact, our courses were explicitly designed for growth.

Read Article

Media And Play Button

EditorialCardPlayButton is opt-in. Omit it for written articles and include it for playable media. When the video should open over the current page, pass the play button as the trigger for Video Player Dialog, as shown below. Keep navigation and analytics in the consuming app.

May 8, 2023

Starting a Career in Web Design: Mauricio Tonon

Interview
ByWNgutor John

It's no secret: Awwwards Masterclasses believe that mentorship is essential and invaluable for creatives.

Read Article

May 8, 2023

Starting a Career in Web Design: Mauricio Tonon

Interview
ByWNgutor John

It's no secret: Awwwards Masterclasses believe that mentorship is essential and invaluable for creatives.

Read Article

Reviews

EditorialCardRating renders a star rating with an optional numeric score and review source, mirroring TestimonialBlockRating. It scales with the card's size.

May 8, 2023

Starting a Career in Web Design: Mauricio Tonon

Interview
4.5128 Google reviews
ByWNgutor John

It's no secret: Awwwards Masterclasses believe that mentorship is essential and invaluable for creatives.

Read Article

Sizes

The size prop scales spacing, type, media height, avatar, and play button together without constraining width.

May 8, 2023

Starting a Career in Web Design: Mauricio Tonon

Interview
ByWNgutor John

It's no secret: Awwwards Masterclasses believe that mentorship is essential and invaluable for creatives.

Read Article

Sm

May 8, 2023

Starting a Career in Web Design: Mauricio Tonon

Interview
ByWNgutor John

It's no secret: Awwwards Masterclasses believe that mentorship is essential and invaluable for creatives.

Read Article

Md

May 8, 2023

Starting a Career in Web Design: Mauricio Tonon

Interview
ByWNgutor John

It's no secret: Awwwards Masterclasses believe that mentorship is essential and invaluable for creatives.

Read Article

Lg

Props

Prop/APITypeDefaultDescription
size"sm" | "md" | "lg""md"Scales the editorial card's internal density and media proportions.
EditorialCardAttribution.authorNamestringrequiredAuthor name rendered after the prefix.
EditorialCardAttribution.brand{ name?: string; photo?: string }-Optional brand avatar source. Hidden when no brand data is provided.
EditorialCardAttribution.prefixstring"By"Label before the author name. Set to an empty string to hide it.
EditorialCardRating.ratingnumberrequiredRating value clamped to the 0-5 range and rendered as the score/stars.
EditorialCardRating.sourceReactNode-Optional review source. Hidden when omitted.
EditorialCardRating.totalReviewsnumber-Optional review count rendered with the source when provided.
EditorialCardRating.reviewLabelstring"review" / "reviews"Overrides the generated review-count label.
EditorialCardRating.showScorebooleantrueHides the numeric score when set to false.
renderBase UI render prop-Changes the rendered element while preserving styles.
classNamestring-Local layout or spacing overrides.
native/root propsReact component props-Passed through to the underlying slot element.

Accessibility

  • Keep EditorialCard semantic as an article unless the consuming context requires a different element via render.
  • Provide meaningful alt text for informative images; use empty alt="" only for decorative thumbnails.
  • EditorialCardRating exposes the star row as an image with a "{rating} out of 5" label, so the rating stays readable when showScore is false.
  • EditorialCardPlayButton includes a default accessible name; override aria-label when multiple playable editorial cards need more specific labels.
  • Use Video Player Dialog for modal playback rather than attaching ad-hoc overlay and media behavior to the card.
  • Keep product routing and analytics in the consuming app. Use EditorialCardLink with a real href or render it as the app's link component.

On this page