Guided Setup Card
A copy-paste onboarding & coachmarks component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.
Onboarding & CoachmarksHTMLCSSany framework
Set up your first project
Projects keep your tasks, files and team in one place.
or explore sample dataCopy into your project
HTML
<!-- Guided Setup Card — empty-dashboard state that prompts the first meaningful action -->
<div class="nuda-ob2-guided-setup">
<div class="nuda-ob2-guided-setup__icon" aria-hidden="true">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.75" stroke-linecap="round" stroke-linejoin="round">
<rect x="4" y="4" width="16" height="16" rx="3" />
<path d="M12 8 L12 16 M8 12 L16 12" />
</svg>
</div>
<h4>Set up your first project</h4>
<p>Projects keep your tasks, files and team in one place.</p>
<button class="nuda-ob2-guided-setup__cta" type="button">Create a project</button>
<a class="nuda-ob2-guided-setup__sample" href="#">or explore sample data</a>
</div>CSS
.nuda-ob2-guided-setup {
width: 100%;
max-width: 280px;
padding: 22px 18px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 6px;
background: rgba(255,255,255,.02);
border: 1.5px dashed rgba(255,255,255,.16);
border-radius: 14px;
animation: nuda-ob2-guided-setup-in .5s cubic-bezier(.16,1,.3,1) both;
}
.nuda-ob2-guided-setup__icon {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 4px;
background: linear-gradient(135deg,rgba(228,255,84,.18),rgba(228,255,84,.04));
border: 1px solid rgba(228,255,84,.28);
border-radius: 50%;
color: #e4ff54;
animation: nuda-ob2-guided-setup-float 3.4s ease-in-out infinite;
}
.nuda-ob2-guided-setup__icon svg {
width: 20px;
height: 20px;
}
.nuda-ob2-guided-setup h4 {
margin: 0;
font: 700 14px ui-sans-serif,system-ui;
color: #fafafa;
}
.nuda-ob2-guided-setup p {
margin: 0 0 6px;
font: 500 12px/1.5 ui-sans-serif,system-ui;
color: #a1a1aa;
}
.nuda-ob2-guided-setup__cta {
min-height: 40px;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0 20px;
background: #e4ff54;
color: #0a0a0a;
border: none;
border-radius: 8px;
font: 700 12px ui-sans-serif,system-ui;
cursor: pointer;
transition: transform .2s,box-shadow .25s;
}
.nuda-ob2-guided-setup__cta:hover {
transform: translateY(-1px);
box-shadow: 0 0 18px rgba(228,255,84,.4);
}
.nuda-ob2-guided-setup__cta:focus-visible {
outline: 2px solid #e4ff54;
outline-offset: 2px;
}
.nuda-ob2-guided-setup__sample {
font: 600 11px ui-sans-serif,system-ui;
color: #777;
text-decoration: none;
}
.nuda-ob2-guided-setup__sample:hover {
color: #a1a1aa;
text-decoration: underline;
}
@keyframes nuda-ob2-guided-setup-in {
from {
opacity: 0;
transform: translateY(8px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes nuda-ob2-guided-setup-float {
0%,100% {
transform: translateY(0);
}
50% {
transform: translateY(-4px);
}
}
@media (prefers-reduced-motion:reduce) {
.nuda-ob2-guided-setup {
animation: none;
}
.nuda-ob2-guided-setup__icon {
animation: none;
}
}
How to use Guided Setup Card
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.