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

# Settings

> Configure MindLi to your thinking needs.

export const ProTips = ({page, item, icon, children}) => {
  const label = page || item;
  if (!label || !children) {
    return null;
  }
  return <>
      <Heading level="3">
        {icon ? <span style={{
    marginRight: "10px",
    display: "inline-block"
  }}>
            {icon}
          </span> : null}
        Pro Tips for: {label}
      </Heading>
      {children}
    </>;
};

export const MndIcon = ({icon, size = 20, color, circle = false}) => {
  const iconUrl = `https://app.mindli.com/api/icon/${icon}`;
  const [isDarkMode, setIsDarkMode] = React.useState(false);
  React.useEffect(() => {
    const checkTheme = () => {
      const darkClass = document.documentElement.classList.contains('dark');
      const darkAttr = document.documentElement.getAttribute('data-theme') === 'dark';
      setIsDarkMode(darkClass || darkAttr);
    };
    checkTheme();
    const observer = new MutationObserver(checkTheme);
    observer.observe(document.documentElement, {
      attributes: true,
      attributeFilter: ['class', 'data-theme']
    });
    return () => observer.disconnect();
  }, []);
  let finalColor = color;
  if (!color) {
    finalColor = isDarkMode ? '#FFFFFF' : '#333333';
  }
  const iconElement = <span style={{
    width: `${size}px`,
    height: `${size}px`,
    backgroundColor: finalColor,
    maskImage: `url(${iconUrl})`,
    maskSize: 'contain',
    maskRepeat: 'no-repeat',
    WebkitMaskImage: `url(${iconUrl})`,
    WebkitMaskSize: 'contain',
    display: 'inline-block',
    verticalAlign: 'middle'
  }} />;
  if (!circle) {
    return <span style={{
      display: 'inline-flex',
      alignItems: 'center',
      justifyContent: 'center',
      verticalAlign: 'middle',
      transform: 'translateY(-0.08em)'
    }}>
        {iconElement}
      </span>;
  }
  const circleSize = Math.max(size + 6, 20);
  return <span style={{
    display: 'inline-flex',
    width: `${circleSize}px`,
    height: `${circleSize}px`,
    border: `2px solid ${finalColor}`,
    borderRadius: '9999px',
    alignItems: 'center',
    justifyContent: 'center',
    verticalAlign: 'middle',
    transform: 'translateY(-0.08em)'
  }}>
      {iconElement}
    </span>;
};

## Overview

Customize MindLi to fit your thinking workflow.

It includes the following sections:

* **<MndIcon icon="MNDIconSettings" /> General:** Profile, preferences, display, version, help, legal, and account management
* **<MndIcon icon="MNDIconLucideCirclePlus" /> Add:** Configure sensors for capturing Sparks (WhatsApp, Chrome extension, Email)
* **<MndIcon icon="MNDIconBox" /> Box:** Automate Box organization and Spark details (Auto Boxing, Auto Name, Auto Cover Image)
* **<MndIcon icon="MNDIconLightbulb" /> Create:** Explore AI operations for Sparks, Boxes, and Home
* **<MndIcon icon="MNDIconFlaskConical" /> Advanced:** Labs features, export data, and experimental options

<Note>
  - Settings are saved automatically as you make changes.
  - Settings items may change based on your platform.
</Note>

<ProTips item="Settings" icon={<MndIcon icon="MNDIconBrain" color="#FF9900" size={18} />}>
  <ol>
    <li>Start in <MndIcon icon="MNDIconSettings" size={14} /> General to set MindLi in the way that fits you best, especially profile, display, and account preferences, so the app feels aligned with how you think and work each day</li>
    <li>When Sparks come in from sensors, MindLi enriches them with AI by default while keeping the original content intact; to keep fully raw input, go to <MndIcon icon="MNDIconSettings" size={14} /> Settings > <MndIcon icon="MNDIconBox" size={14} /> Box and turn it off</li>
    <li>Need a reminder of how MindLi works? Use Redo Onboarding in <MndIcon icon="MNDIconSettings" size={14} /> General to quickly walk through setup again</li>
  </ol>
</ProTips>
