> ## Documentation Index
> Fetch the complete documentation index at: https://shubham-0fd31468.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Deck Management

> Learn how to create, organize, and manage your flashcard decks effectively

## Overview

FlashMind's deck management system allows you to organize your learning materials into focused collections. Each deck represents a specific topic or subject area, making it easy to target your study sessions.

## Creating Decks

### Basic Deck Creation

<Steps>
  <Step title="Navigate to Decks">
    Go to your dashboard and click "Create New Deck"
  </Step>

  <Step title="Set Deck Details">
    Provide a title and optional description for your deck
  </Step>

  <Step title="Configure Settings">
    Choose visibility settings and study preferences
  </Step>
</Steps>

### Deck Properties

Each deck has several configurable properties:

<AccordionGroup>
  <Accordion title="Basic Information">
    * **Title**: The name of your deck
    * **Description**: Optional description of the deck's content
    * **Tags**: Keywords for organization and searching
    * **Subject**: Category or academic subject
  </Accordion>

  <Accordion title="Study Settings">
    * **Cards per session**: Maximum cards to review in one session
    * **New cards per day**: How many new cards to introduce daily
    * **Review order**: Random, creation order, or difficulty-based
    * **Time limit**: Optional time constraints for reviews
  </Accordion>

  <Accordion title="Sharing Options">
    * **Private**: Only you can access the deck
    * **Public**: Anyone can view and clone the deck
    * **Shared**: Specific users can access the deck
    * **Collaborative**: Multiple users can edit the deck
  </Accordion>
</AccordionGroup>

## Managing Cards

### Adding Cards

Multiple ways to add cards to your decks:

<Tabs>
  <Tab title="Manual Entry">
    Create cards one by one using the card editor:

    ```markdown theme={null}
    Front: What is the capital of France?
    Back: Paris

    Tags: geography, europe, capitals
    Difficulty: Easy
    ```
  </Tab>

  <Tab title="Bulk Import">
    Import cards from CSV, text files, or other formats:

    ```csv theme={null}
    Front,Back,Tags
    "What is 2+2?","4","math,basic"
    "Capital of Japan","Tokyo","geography,asia"
    ```
  </Tab>

  <Tab title="AI Generation">
    Use AI to generate cards from text content:

    ```
    Input: "The mitochondria is the powerhouse of the cell..."

    Generated Cards:
    Q: What is called the powerhouse of the cell?
    A: The mitochondria
    ```
  </Tab>
</Tabs>

### Card Types

FlashMind supports various card formats:

<CardGroup cols={2}>
  <Card title="Basic Cards" icon="rectangle">
    Simple front/back question and answer format
  </Card>

  <Card title="Cloze Deletion" icon="eye-slash">
    Fill-in-the-blank style cards with hidden text
  </Card>

  <Card title="Multiple Choice" icon="list">
    Questions with predefined answer options
  </Card>

  <Card title="Image Cards" icon="image">
    Visual cards with images, diagrams, or charts
  </Card>
</CardGroup>

### Card Editor Features

The card editor includes powerful formatting options:

* **Rich text formatting**: Bold, italic, code, lists
* **Math equations**: LaTeX support for mathematical expressions
* **Images and media**: Upload or link to visual content
* **Audio recording**: Record pronunciation or spoken content
* **Code syntax highlighting**: For programming-related cards

<CodeGroup>
  ```markdown Basic Card theme={null}
  **Front:** What is the time complexity of binary search?

  **Back:** O(log n)

  **Explanation:** Binary search eliminates half the search space with each comparison.
  ```

  ```latex Math Card theme={null}
  **Front:** Solve for x: $x^2 + 5x + 6 = 0$

  **Back:** $x = -2$ or $x = -3$

  **Steps:** Using the quadratic formula:
  $$x = \frac{-5 \pm \sqrt{25-24}}{2} = \frac{-5 \pm 1}{2}$$
  ```
</CodeGroup>

## Deck Organization

### Folder Structure

Organize decks into folders for better management:

```
📁 My Decks
├── 📁 Computer Science
│   ├── 🃏 Data Structures
│   ├── 🃏 Algorithms
│   └── 🃏 Operating Systems
├── 📁 Languages
│   ├── 🃏 Spanish Vocabulary
│   ├── 🃏 French Grammar
│   └── 🃏 German Phrases
└── 📁 Medical School
    ├── 🃏 Anatomy
    ├── 🃏 Pharmacology
    └── 🃏 Pathology
```

### Tagging System

Use tags to create flexible organization across folders:

<Tabs>
  <Tab title="Subject Tags">
    `#biology` `#chemistry` `#physics` `#mathematics`
  </Tab>

  <Tab title="Difficulty Tags">
    `#beginner` `#intermediate` `#advanced` `#expert`
  </Tab>

  <Tab title="Source Tags">
    `#textbook` `#lecture` `#online-course` `#practice-exam`
  </Tab>

  <Tab title="Custom Tags">
    `#review-needed` `#high-priority` `#exam-prep` `#daily-practice`
  </Tab>
</Tabs>

## Study Sessions

### Session Configuration

Customize your study experience:

<Steps>
  <Step title="Select Decks">
    Choose which decks to include in your session
  </Step>

  <Step title="Set Parameters">
    Configure session length, card types, and difficulty
  </Step>

  <Step title="Choose Mode">
    Select study mode: Review, Learn, or Mixed
  </Step>
</Steps>

### Study Modes

<AccordionGroup>
  <Accordion title="Review Mode">
    Focus on cards due for review based on spaced repetition scheduling

    * Shows cards you've seen before
    * Follows optimal timing intervals
    * Prioritizes difficult cards
  </Accordion>

  <Accordion title="Learn Mode">
    Introduce new cards and build initial familiarity

    * Shows unseen cards first
    * Uses shorter initial intervals
    * Focuses on concept introduction
  </Accordion>

  <Accordion title="Cram Mode">
    Intensive review for exam preparation

    * Ignores spaced repetition timing
    * Reviews all selected cards
    * Emphasizes problematic cards
  </Accordion>

  <Accordion title="Mixed Mode">
    Balanced combination of new and review cards

    * Follows daily new card limits
    * Includes scheduled reviews
    * Maintains learning progression
  </Accordion>
</AccordionGroup>

## Deck Analytics

### Performance Metrics

Track your progress with detailed analytics:

```mermaid theme={null}
graph LR
    A[Study Session] --> B[Card Performance]
    B --> C[Retention Rate]
    B --> D[Response Time]
    B --> E[Difficulty Rating]
    
    C --> F[Deck Analytics]
    D --> F
    E --> F
    
    F --> G[Learning Insights]
```

### Key Metrics

<CardGroup cols={2}>
  <Card title="Retention Rate" icon="percentage">
    Percentage of cards answered correctly
  </Card>

  <Card title="Cards Mastered" icon="graduation-cap">
    Number of cards with long review intervals
  </Card>

  <Card title="Study Streak" icon="fire">
    Consecutive days of study activity
  </Card>

  <Card title="Time per Card" icon="stopwatch">
    Average time spent reviewing each card
  </Card>
</CardGroup>

### Progress Visualization

View your learning progress through various charts and graphs:

* **Daily activity heatmap**: Visual representation of study consistency
* **Retention curves**: How well you remember different card types
* **Difficulty distribution**: Spread of card difficulties in your deck
* **Projected completion**: Estimated time to master all cards

## Sharing and Collaboration

### Public Decks

Share your knowledge with the community:

<Steps>
  <Step title="Make Deck Public">
    Enable public access in deck settings
  </Step>

  <Step title="Add Description">
    Provide clear description and usage instructions
  </Step>

  <Step title="Tag Appropriately">
    Use relevant tags for discoverability
  </Step>
</Steps>

### Collaborative Decks

Work together on deck creation:

* **Shared editing**: Multiple users can add and modify cards
* **Version control**: Track changes and revert if needed
* **Role management**: Assign editor, viewer, or admin roles
* **Discussion threads**: Comment on specific cards or deck sections

<Tip>
  Public decks in the FlashMind community have helped thousands of learners. Consider sharing your high-quality decks to contribute to the learning ecosystem!
</Tip>

## Best Practices

### Deck Design

1. **Keep decks focused**: One subject or topic per deck
2. **Optimal deck size**: 50-200 cards for most subjects
3. **Consistent formatting**: Use similar structures across cards
4. **Clear question-answer pairs**: Avoid ambiguous wording

### Content Guidelines

* **One concept per card**: Don't overload individual cards
* **Use active recall**: Write questions that require thinking
* **Include context**: Provide enough information for understanding
* **Regular maintenance**: Update and refine cards based on performance

Ready to create your first deck? Start with our [quickstart guide](/quickstart) and begin building your personalized learning system!
