๐ŸŽฏ Nexus teaches Next.js from foundations to professional systemsโ€ขโšก App Router, React 19, and Tailwind v4 in one learning pathโ€ข๐Ÿงฉ Inspect real components, layouts, and reusable patternsโ€ข๐Ÿ› ๏ธ Build production discipline, not just polished demosโ€ข๐Ÿ“š Tracks, references, and design studies in one placeโ€ข๐ŸŽฏ Nexus teaches Next.js from foundations to professional systemsโ€ขโšก App Router, React 19, and Tailwind v4 in one learning pathโ€ข๐Ÿงฉ Inspect real components, layouts, and reusable patternsโ€ข๐Ÿ› ๏ธ Build production discipline, not just polished demosโ€ข๐Ÿ“š Tracks, references, and design studies in one placeโ€ข๐ŸŽฏ Nexus teaches Next.js from foundations to professional systemsโ€ขโšก App Router, React 19, and Tailwind v4 in one learning pathโ€ข๐Ÿงฉ Inspect real components, layouts, and reusable patternsโ€ข๐Ÿ› ๏ธ Build production discipline, not just polished demosโ€ข๐Ÿ“š Tracks, references, and design studies in one placeโ€ข๐ŸŽฏ Nexus teaches Next.js from foundations to professional systemsโ€ขโšก App Router, React 19, and Tailwind v4 in one learning pathโ€ข๐Ÿงฉ Inspect real components, layouts, and reusable patternsโ€ข๐Ÿ› ๏ธ Build production discipline, not just polished demosโ€ข๐Ÿ“š Tracks, references, and design studies in one placeโ€ข
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 to
src/lib/constants.ts โ†’ LOGO_CLOUD
src/types/index.ts โ†’ LogoItem
// Copy the component from
src/components/sections/LogoCloud.tsx

Usage

import { LogoCloud } from '@/components/sections/LogoCloud'
// Default โ€” uses LOGO_CLOUD from constants
export default function HomePage() {
return <LogoCloud />
}
// With real logo images
const 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

PropTypeDefaultDescription
logosLogoItem[]-Array of logo items (defaults to LOGO_CLOUD from constants)
titlestring"Trusted by teams at"Label text above logos
classNamestring-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