Aurora Glow Footer
A copy-paste footers component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.
FootersHTMLCSSany framework
Copy into your project
HTML
<footer class="nuda-footer-aurora">
<span class="nuda-footer-aurora__bg" aria-hidden="true"></span>
<div class="nuda-footer-aurora__inner">
<span>NudaUI</span>
<span>Crafted with zero npm installs</span>
</div>
</footer>CSS
.nuda-footer-aurora {
position: relative;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: 16px;
background: #0c0c10;
padding: 28px 24px;
isolation: isolate;
}
.nuda-footer-aurora__bg {
position: absolute;
inset: -40%;
background: conic-gradient(
from 220deg at 50% 50%,
#e4ff54 0%, #62b6ff 25%, #9d6dff 50%, #ff6dd4 75%, #e4ff54 100%
);
filter: blur(60px);
opacity: 0.45;
animation: nuda-aurora-spin 18s linear infinite;
z-index: -1;
}
.nuda-footer-aurora__inner {
display: flex;
justify-content: space-between;
align-items: center;
color: #fafafa;
font-size: 13px;
flex-wrap: wrap;
gap: 8px;
}
@keyframes nuda-aurora-spin {
to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
.nuda-footer-aurora__bg { animation: none; }
}How to use Aurora Glow Footer
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.