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

# Cómo está organizado DirtView

> Dos niveles: tu empresa y cada obra. Saber en cuál estás responde casi todas las preguntas.

export const Video = ({id, title, runtime, url}) => {
  const meta = VIDEOS[id] || ({});
  const label = title || meta.title || "Tutorial video";
  const length = runtime || meta.runtime || "";
  const track = meta.track || "";
  const src = toEmbedUrl(url || meta.url);
  const frame = {
    position: "relative",
    width: "100%",
    paddingTop: "56.25%",
    borderRadius: "10px",
    overflow: "hidden",
    background: "rgba(127,127,127,0.09)",
    border: src ? "1px solid rgba(127,127,127,0.24)" : "1px dashed rgba(127,127,127,0.42)"
  };
  const fill = {
    position: "absolute",
    inset: 0,
    width: "100%",
    height: "100%",
    border: 0
  };
  const center = {
    position: "absolute",
    inset: 0,
    display: "flex",
    flexDirection: "column",
    alignItems: "center",
    justifyContent: "center",
    gap: "10px",
    padding: "24px",
    textAlign: "center"
  };
  const idBadge = {
    fontFamily: "ui-monospace, SFMono-Regular, Menlo, monospace",
    fontSize: "12px",
    letterSpacing: "0.06em",
    padding: "2px 8px",
    borderRadius: "4px",
    background: "rgba(184,82,40,0.14)",
    color: "#B85228",
    fontWeight: 600
  };
  const caption = {
    display: "flex",
    flexWrap: "wrap",
    alignItems: "center",
    gap: "8px",
    marginTop: "8px",
    fontSize: "13px",
    opacity: 0.66,
    fontFamily: "ui-monospace, SFMono-Regular, Menlo, monospace"
  };
  return <div style={{
    margin: "0 0 28px"
  }}>
      <div style={frame}>
        {src ? <iframe style={fill} src={src} title={label} frameBorder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" allowFullScreen /> : <div style={center}>
            <svg width="44" height="44" viewBox="0 0 44 44" fill="none" aria-hidden="true">
              <circle cx="22" cy="22" r="20" stroke="currentColor" strokeOpacity="0.28" strokeWidth="2" />
              <path d="M18 15.5L29 22L18 28.5V15.5Z" fill="currentColor" fillOpacity="0.32" />
            </svg>
            <div style={{
    fontWeight: 600,
    fontSize: "15px",
    maxWidth: "36ch",
    lineHeight: 1.35
  }}>{label}</div>
            <div style={{
    fontSize: "13px",
    opacity: 0.6
  }}>
              Video coming soon{length ? " · " + length : ""}
            </div>
          </div>}
      </div>
      <div style={caption}>
        {id ? <span style={idBadge}>{id}</span> : null}
        {length ? <span>{length}</span> : null}
        {track ? <span>{track} track</span> : null}
      </div>
    </div>;
};

<Video id="00.1" />

<Note>
  **En una línea.** El menú de la izquierda es **toda tu empresa**. Todo lo que está dentro de una obra pertenece **solo a esa obra**.
</Note>

## Dos niveles, nada más

<CardGroup cols={2}>
  <Card title="Nivel empresa" icon="building">
    El menú de la izquierda. Tu personal, sus roles, tu lista de obras. Se configura una vez y lo usan todas las obras.

    Empleados · Contactos externos · Roles · Proyectos · Configuración
  </Card>

  <Card title="Nivel obra" icon="helmet-safety">
    Los mosaicos que ves al abrir una obra. Solo existen dentro de esa obra.

    Planos · Especificaciones · RFIs · Envíos · Órdenes de cambio · Formularios · Tickets T\&M · Documentos
  </Card>
</CardGroup>

## Por qué importa el primer día

<AccordionGroup>
  <Accordion title="Agregué a alguien a la empresa y no ve la obra">
    Así funciona. Agregar a una persona a la empresa crea su cuenta. No la agrega a ninguna obra. Eso se hace obra por obra.
  </Accordion>

  <Accordion title="Busco los planos en el menú izquierdo y no están">
    Los planos viven dentro de una obra, porque cada obra tiene un juego distinto. Abre la obra y luego el mosaico **Planos**.
  </Accordion>

  <Accordion title="Los números del tablero no cuadran con esta obra">
    El tablero cuenta todo lo de la empresa, no solo la obra que abriste al final.
  </Accordion>
</AccordionGroup>

## Siguiente

<CardGroup cols={2}>
  <Card title="Iniciar sesión e idioma" icon="right-to-bracket" href="/es/orientation/signing-in-and-language">
    Entrar y cambiar a español.
  </Card>

  <Card title="Leer tu tablero" icon="gauge-high" href="/es/orientation/your-dashboard">
    Qué cuenta cada número.
  </Card>
</CardGroup>
