Cards

HTML Layout

<div class="card">
  <img src="placeholder.jpg" alt="George the goose" />
  <div class="text">
    <h2>George</h2>
    <p>Professional chaos causer</p>
    <a href="#" class="button">
      Learn more
    </a>
  </div>
</div>

Images can be omitted safely.

React Layout

import { Card, Button } from '@cupid-ui/react';

// [...]

<Card
  title="George"
  subtitle="Professional chaos causer"
  image="placeholder.jpg"
  imageDesc="George the goose"
>
  <Button
    title="Learn more"
    link="#"
  />
</Card>

Parameters

Preview

George

Professional chaos causer. Caused so much chaos the button and image disappeared.

More info