Trusted By Logo Cloud
Original · freeA responsive six-up logo strip using simple inline-SVG marks and wordmarks with a grayscale-to-colour hover, for a trusted-by section.
Copy prompt gives Claude Code, Cursor or v0 a ready-to-paste prompt that recreates this exact component.
npx shadcn@latest add https://webinnoventix.com/r/stats-logo-cloud.jsonconst logos = [
{ name: "Northwind" },
{ name: "Palette" },
{ name: "Quanta" },
{ name: "Meridian" },
{ name: "Cobalt" },
{ name: "Verdant" },
];
function LogoMark() {
return (
<svg
viewBox="0 0 24 24"
className="h-6 w-6 shrink-0"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
aria-hidden
>
<rect x="3" y="3" width="18" height="18" rx="5" />
<path d="M8 14l3-4 2 2.5L16 8" />
</svg>
);
}
export default function StatsLogoCloud() {
return (
<section className="bg-white px-6 py-16 dark:bg-zinc-950 md:py-24">
<div className="mx-auto max-w-6xl">
<p className="text-center text-sm font-semibold uppercase tracking-widest text-zinc-500 dark:text-zinc-400">
Trusted by fast-moving teams everywhere
</p>
<ul className="mx-auto mt-10 grid max-w-4xl grid-cols-2 items-center gap-x-8 gap-y-10 sm:grid-cols-3 lg:grid-cols-6">
{logos.map((logo) => (
<li
key={logo.name}
className="flex items-center justify-center gap-2 text-zinc-400 grayscale transition duration-200 hover:text-zinc-900 hover:grayscale-0 dark:text-zinc-500 dark:hover:text-white"
>
<LogoMark />
<span className="text-lg font-semibold tracking-tight">{logo.name}</span>
</li>
))}
</ul>
<p className="mt-12 text-center text-sm text-zinc-500 dark:text-zinc-500">
Join more than <span className="font-semibold text-zinc-900 dark:text-white">2,000 companies</span> already on board.
</p>
</div>
</section>
);
}Dependencies
Licence
Built by Web Innoventix. Free for personal and commercial use, no attribution required.
Built by Web Innoventix
Need a custom interface, a full website, or SEO that gets you cited by AI? We design, build and rank it end to end.
Get a free quoteSimilar components
Browse all →
Four Stat Metric Band
OriginalA four-column metric band with gradient figures inside a hairline-divided card, ideal for headline numbers like uptime, latency and growth.

Labelled Stats With Dividers
OriginalThree centred stats separated by responsive dividers, each pairing a headline figure with an uppercase label and supporting detail.

Hero Stat With Supporting Copy
OriginalA two-column layout pairing one oversized hero statistic with a supporting paragraph and a checklist card explaining the number.

Count-up stats reveal
OriginalA four-card stat band whose gradient numbers count up from zero as the section scrolls into view, with staggered blur-in cards, a pulsing eyebrow, floating aurora blobs and a shimmering underline sweep.

Animated SVG progress rings
OriginalFour circular SVG progress rings that draw their gradient arcs and count up to their target percentage the moment they enter view, over a slowly rotating conic halo with a soft glow pulse behind each ring.

Staggered stat band with marquee ticker
OriginalA dark stat band where 3D-tilt cards stagger into view with count-up figures over an animated gradient mesh, finished by an infinite marquee ticker of highlight chips that pauses on hover.

Spotlight Hero
OriginalA centred hero with a soft radial spotlight, badge and dual call-to-action.

Split Hero
OriginalA two-column hero pairing a headline and CTAs with a product mock and social proof.

Gradient Spotlight Hero
OriginalA minimal centred hero with a soft gradient-mesh backdrop, announcement pill and dual call-to-action buttons.

App Preview Hero
OriginalA centred hero that pairs headline copy with a realistic product dashboard mock built entirely from markup, complete with browser chrome and a floating notification card.

Waitlist Capture Hero
OriginalA dark, focused hero with an inline email capture form and avatar social proof, ready for pre-launch waitlists.

Image Backdrop Hero
OriginalA cinematic full-bleed hero with a layered image-style backdrop, overlaid left-aligned copy and a trusted-by logos strip.

