Sections
LogoCloud
A horizontal row of company logos (or text placeholders) to build social proof
Quick Preview
Trusted by teams at
Next.js
React
TypeScript
Tailwind
App Router
Accessibility
Animation
Design Systems
Custom Title
As seen in
Next.js
React
TypeScript
Tailwind
App Router
Accessibility
Animation
Design Systems
Installation
// Add logo data tosrc/lib/constants.ts โ LOGO_CLOUDsrc/types/index.ts โ LogoItem// Copy the component fromsrc/components/sections/LogoCloud.tsx
Usage
import { LogoCloud } from '@/components/sections/LogoCloud'// Default โ uses LOGO_CLOUD from constantsexport default function HomePage() {return <LogoCloud />}// With real logo imagesconst logos = [{ name: 'Vercel', src: '/logos/vercel.svg' },{ name: 'Stripe', src: '/logos/stripe.svg' },{ name: 'GitHub', placeholder: 'GH' }, // text fallback]export default function HomePage() {return <LogoCloud logos={logos} title="Trusted by" />}
Prompt Preview
Copy a prompt that recreates this UI
Paste this into your AI coding assistant to generate code that closely matches the reference, including color, size, shape, typography, spacing, and polish.
Copy-ready AI prompt
Starts from the current visual reference and project constraints.
Tweak only product-specific copy or data after the first generation pass.
Props
| Prop | Type | Default | Description |
|---|---|---|---|
logos | LogoItem[] | - | Array of logo items (defaults to LOGO_CLOUD from constants) |
title | string | "Trusted by teams at" | Label text above logos |
className | string | - | Additional CSS classes |
Features
- โSupports real <img> logos or emoji/text placeholders
- โGrayscale hover-to-color effect for real images
- โResponsive flex-wrap layout
- โData-driven: edit LOGO_CLOUD in constants.ts