Shell

Application layout pattern: sidebar + main content area. This is a CSS layout recipe, not a custom element.

App Shell Preview

Lobby

CSS Recipe

.app-shell {
  display: flex;
  min-height: 100vh;
  background: rgb(var(--ndo-gray-100));
}

.sidebar {
  width: 13rem;        /* w-52 */
  flex-shrink: 0;
  background: #fff;
  border-right: 1px solid rgb(var(--ndo-gray-200));
}

.main {
  flex: 1;
  min-width: 0;
  overflow: auto;
}