> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vistaly.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Unmapped Cards

> Unmapped cards where cards go that don't have a clear space on the tree or are not ready to be placed there.

export const VideoGIF = ({src, className = '', ...otherProps}) => <Video src={src} autoPlay={true} muted={true} loop={true} controls={false} playsInline={true} className={className} style={{
  boxShadow: "0 2px 4px -1px rgba(0, 0, 0, 0.1), 0 2px 10px 0 rgba(0, 0, 0, 0.06)"
}} {...otherProps} />;

export const Video = ({src, autoPlay = false, muted = false, loop = false, playsInline = true, controls = true, className = '', ...otherProps}) => <video src={`https://cdn.vistaly.com/kb${src}`} autoPlay={autoPlay} muted={muted} loop={loop} playsInline={playsInline} controls={controls} className={className} {...otherProps} />;

## Navigating to Unmapped cards

To see your Unmapped card, click the nav item in the left-side navigation. From there you can add an Unmapped Card.

<VideoGIF src="/documentation/core-concepts/unmapped-cards/unmapped-from-tree.mp4" />

## Adding from the Roadmap

You can also add an Unmapped card directly into a column on the [Roadmap View](/documentation/views/roadmap).

<VideoGIF src="/documentation/core-concepts/unmapped-cards/unmapped-from-roadmap.mp4" />

## Adding to the Tree

Add an Unmapped card to the tree by navigating to Unmapped cards, clicking the "Add to Tree" button on the Unmapped card you'd like to move, and selecting the parent you'd like to place the Unmapped card under.

<VideoGIF src="/documentation/core-concepts/unmapped-cards/add-unmapped-to-tree.mp4" />
