TheDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/Codefied-CodePix/KaroCar-platform/llms.txt
Use this file to discover all available pages before exploring further.
Card component renders a styled anchor element linking to an external URL, automatically appending UTM tracking parameters sourced from create-turbo. It displays a title as a heading and accepts optional description children rendered as a paragraph below it. The link always opens in a new tab with rel="noopener noreferrer" for security.
Prop types
The component uses inline prop types rather than a named interface:Props
One or more CSS class names applied to the outer
<a> element for layout or visual styling.The card heading text, rendered inside an
<h2> tag followed by a → arrow span.Descriptive content rendered in a
<p> tag beneath the title. Typically a short sentence summarising the link destination.The destination URL. UTM tracking parameters (
utm_source, utm_medium, utm_campaign) are appended automatically — you do not need to include them manually.Usage
Source code
The component automatically appends
?utm_source=create-turbo&utm_medium=basic&utm_campaign=create-turbo to the href you provide. Do not include a query string in the href prop — the hardcoded UTM parameters will be concatenated directly after the base URL, which may produce a malformed URL if a ? is already present. There is also a known bug in the source: the URL template literal ends with a stray double-quote character (create-turbo"), which appends a trailing " to every generated href.