App Store Badge Footer
A copy-paste footers component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.
FootersHTMLCSSany framework
Copy into your project
HTML
<!-- App Store Badge Footer -->
<footer class="nuda-ft2-appstore-badges">
<p class="nuda-ft2-appstore-badges__tag">Take NudaUI with you</p>
<div class="nuda-ft2-appstore-badges__badges">
<a href="#" class="nuda-ft2-appstore-badges__badge" aria-label="Download on the App Store">
<svg aria-hidden="true" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M12 3v12" />
<path d="M7 10l5 5 5-5" />
<path d="M5 21h14" />
</svg>
<span class="nuda-ft2-appstore-badges__text">
<small>Download on the</small>
<strong>App Store</strong>
</span>
</a>
<a href="#" class="nuda-ft2-appstore-badges__badge" aria-label="Get it on Google Play">
<svg aria-hidden="true" viewBox="0 0 24 24" fill="currentColor">
<path d="M6 4l14 8-14 8V4z" />
</svg>
<span class="nuda-ft2-appstore-badges__text">
<small>GET IT ON</small>
<strong>Google Play</strong>
</span>
</a>
</div>
</footer>CSS
.nuda-ft2-appstore-badges {
display: flex;
flex-direction: column;
align-items: center;
gap: 14px;
padding: 22px;
background: #0a0a0a;
border: 1px solid rgba(255,255,255,.08);
border-radius: 16px;
width: 100%;
max-width: 320px;
text-align: center;
}
.nuda-ft2-appstore-badges__tag {
margin: 0;
color: #fafafa;
font-size: 13px;
font-weight: 600;
}
.nuda-ft2-appstore-badges__badges {
display: flex;
gap: 10px;
flex-wrap: wrap;
justify-content: center;
}
.nuda-ft2-appstore-badges__badge {
position: relative;
overflow: hidden;
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 14px;
background: #161616;
border: 1px solid rgba(255,255,255,.12);
border-radius: 10px;
color: #fafafa;
text-decoration: none;
transition: transform .2s,border-color .2s;
}
.nuda-ft2-appstore-badges__badge svg {
width: 20px;
height: 20px;
flex-shrink: 0;
color: #e4ff54;
}
.nuda-ft2-appstore-badges__text {
display: flex;
flex-direction: column;
align-items: flex-start;
line-height: 1.2;
}
.nuda-ft2-appstore-badges__text small {
font-size: 8px;
color: #777;
text-transform: uppercase;
letter-spacing: .04em;
}
.nuda-ft2-appstore-badges__text strong {
font-size: 12px;
font-weight: 600;
}
.nuda-ft2-appstore-badges__badge::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(115deg,transparent 30%,rgba(255,255,255,.25) 50%,transparent 70%);
background-size: 250% 100%;
background-position: 150% 0;
opacity: 0;
}
.nuda-ft2-appstore-badges__badge:hover {
transform: translateY(-2px);
border-color: rgba(228,255,84,.4);
}
.nuda-ft2-appstore-badges__badge:hover::after {
opacity: 1;
animation: _nuda-ft2AppstoreBadgesShine 1.1s ease;
}
.nuda-ft2-appstore-badges__badge:focus-visible {
outline: 2px solid #e4ff54;
outline-offset: 2px;
}
@keyframes _nuda-ft2AppstoreBadgesShine {
from {
background-position: 150% 0;
}
to {
background-position: -50% 0;
}
}
@media (prefers-reduced-motion:reduce) {
.nuda-ft2-appstore-badges__badge:hover::after {
animation: none;
opacity: 0;
}
}
How to use App Store Badge 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.