Skip to content

Convert button-style workflow links to Card components#813

Open
mintlify[bot] wants to merge 4 commits intomainfrom
convert-buttons-to-cards-1773155795
Open

Convert button-style workflow links to Card components#813
mintlify[bot] wants to merge 4 commits intomainfrom
convert-buttons-to-cards-1773155795

Conversation

@mintlify
Copy link
Contributor

@mintlify mintlify bot commented Mar 10, 2026

Summary

Converts all inline-styled anchor buttons to Mintlify Card components across tutorial documentation.

Changes (76 files):

  • Cloud buttons (purple/green with cloud.comfy.org URLs) → <Card icon="cloud">
  • Download buttons (blue with raw.githubusercontent.com URLs) → <Card icon="download">
  • Button pairs wrapped in <CardGroup cols={2}>
  • Cloud card positioned first (left), download second (right)
  • Applied to both English and Chinese versions

Example before:

<a href="https://cloud.comfy.org/..." style={{ display: 'inline-block', backgroundColor: '#28A745', ... }}>
    Run on Comfy Cloud
</a>
<a href="https://raw.githubusercontent.com/..." style={{ display: 'inline-block', backgroundColor: '#0078D6', ... }}>
    Download JSON Workflow
</a>

Example after:

<CardGroup cols={2}>
  <Card title="Run on Comfy Cloud" icon="cloud" href="...">
    Open this workflow directly in Comfy Cloud
  </Card>
  <Card title="Download Workflow" icon="download" href="...">
    Download the JSON workflow file for local use
  </Card>
</CardGroup>

mintlify bot added 4 commits March 10, 2026 14:39
Replace inline-styled anchor buttons with Mintlify Card components across all tutorial documentation (76 files).
Changes:
- Cloud links use Card with icon='cloud'
- Download links use Card with icon='download'
- Button pairs wrapped in CardGroup cols={2}
- Cloud cards positioned first (left), download second (right)
- Applied to both English and Chinese versions
This provides a consistent, modern appearance for workflow links throughout the documentation.
Generated-By: mintlify-agent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants