Skip to content

No Team Members

A copy-paste empty states component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.

Empty StatesHTMLCSSany framework

No team members yet

Invite people to start collaborating

Copy into your project

HTML
<!-- No Team Members -->
<div class="nuda-es2-team" role="status" aria-label="No team members yet">
  <div class="nuda-es2-team__scene" aria-hidden="true">
    <span class="nuda-es2-team__avatar nuda-es2-team__avatar--a"></span>
    <span class="nuda-es2-team__avatar nuda-es2-team__avatar--b"></span>
    <span class="nuda-es2-team__avatar nuda-es2-team__avatar--c"></span>
    <span class="nuda-es2-team__invite">
      <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round">
        <path d="M12 5 L12 19" />
        <path d="M5 12 L19 12" />
      </svg>
    </span>
  </div>
  <h3 class="nuda-es2-team__title">No team members yet</h3>
  <p class="nuda-es2-team__sub">Invite people to start collaborating</p>
  <button class="nuda-es2-team__cta" type="button">Invite teammates</button>
</div>
CSS
.nuda-es2-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  text-align: center;
  width: 100%;
  max-width: 260px;
}

.nuda-es2-team__scene {
  position: relative;
  width: 140px;
  height: 60px;
  margin-bottom: 4px;
}

.nuda-es2-team__avatar {
  position: absolute;
  top: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 4px 10px rgba(0,0,0,.4);
  animation: nuda-es2-team-bob 3.2s ease-in-out infinite;
}

.nuda-es2-team__avatar--a {
  left: 6px;
  animation-delay: 0s;
}

.nuda-es2-team__avatar--b {
  left: 38px;
  top: 4px;
  z-index: 1;
  animation-delay: .25s;
}

.nuda-es2-team__avatar--c {
  left: 70px;
  animation-delay: .5s;
}

.nuda-es2-team__invite {
  position: absolute;
  left: 102px;
  top: 6px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px dashed rgba(228,255,84,.6);
  color: #e4ff54;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: nuda-es2-team-glow 2.4s ease-in-out infinite;
}

.nuda-es2-team__invite svg {
  width: 18px;
  height: 18px;
}

.nuda-es2-team__title {
  font: 600 13px ui-sans-serif,system-ui;
  color: #fafafa;
  margin: 0;
}

.nuda-es2-team__sub {
  font: 400 11px ui-sans-serif,system-ui;
  color: #a0a0a8;
  margin: 0;
}

.nuda-es2-team__cta {
  margin-top: 6px;
  padding: 8px 16px;
  background: #e4ff54;
  color: #0a0a0a;
  border: 0;
  border-radius: 8px;
  font: 600 11px ui-sans-serif,system-ui;
  cursor: pointer;
  transition: transform .15s ease,filter .2s ease;
  min-height: 32px;
}

.nuda-es2-team__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.nuda-es2-team__cta:focus-visible {
  outline: 2px solid #e4ff54;
  outline-offset: 2px;
}

@keyframes nuda-es2-team-bob {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes nuda-es2-team-glow {
  0%,100% {
    opacity: .6;
    box-shadow: 0 0 0 rgba(228,255,84,0);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 12px rgba(228,255,84,.35);
  }
}

@media (prefers-reduced-motion:reduce) {
  .nuda-es2-team__avatar,.nuda-es2-team__invite {
    animation: none !important;
  }
  .nuda-es2-team__invite {
    opacity: 1;
    box-shadow: 0 0 8px rgba(228,255,84,.25);
  }
}

How to use No Team Members

Paste the HTML where you need it and the CSS into a global stylesheet (or a <style> tag). Every class is prefixed nuda- so it never collides with Tailwind or your own styles. Tweak the CSS custom properties to match your design system.

Works in React, Vue, Svelte, Astro, Next.js, Nuxt, Laravel Blade, Django, Rails — or a single .html file. No npm install, no build step.

More empty states components

← Browse all NudaUI components