Before
“Three spreadsheets, two dashboards, weekly fire drills.”
After
“One pane of glass. Reviews ship on Mondays now.”
A copy-paste quotes & testimonials component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.
“Three spreadsheets, two dashboards, weekly fire drills.”
“One pane of glass. Reviews ship on Mondays now.”
<article class="nuda-ba-testi">
<div class="nuda-ba-testi__col nuda-ba-testi__col--before">
<div class="nuda-ba-testi__label">Before</div>
<p>“Three spreadsheets, two dashboards, weekly fire drills.”</p>
</div>
<div class="nuda-ba-testi__col nuda-ba-testi__col--after">
<div class="nuda-ba-testi__label">After</div>
<p>“One pane of glass. Reviews ship on Mondays now.”</p>
</div>
<footer class="nuda-ba-testi__cite">Renee Park · Ops, Helix</footer>
</article>/* Before / After Testimonial
Split-card framing of the customer's transformation. */
.nuda-ba-testi {
position: relative;
max-width: 480px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1px;
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 14px;
overflow: hidden;
color: #fafafa;
font-family: ui-sans-serif, system-ui, sans-serif;
}
.nuda-ba-testi__col { padding: 1.25rem; background: #0c0c10; }
.nuda-ba-testi__col--after { background: #111114; }
.nuda-ba-testi__label {
display: inline-block;
font-size: 0.6875rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
padding: 0.125rem 0.5rem;
border-radius: 999px;
margin-bottom: 0.625rem;
}
.nuda-ba-testi__col--before .nuda-ba-testi__label {
color: #ff5e7a;
background: rgba(255, 94, 122, 0.12);
}
.nuda-ba-testi__col--after .nuda-ba-testi__label {
color: #6ee7b7;
background: rgba(110, 231, 183, 0.12);
}
.nuda-ba-testi__col p {
margin: 0;
font-size: 0.875rem;
line-height: 1.5;
}
.nuda-ba-testi__col--before p { color: #a0a0a8; }
.nuda-ba-testi__cite {
grid-column: 1 / -1;
padding: 0.75rem 1.25rem;
background: #09090b;
font-size: 0.75rem;
color: #a0a0a8;
}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.