Skip to content

Alternating quote rows

Company on one side, quote on the other, alternating down the page.

Marketingstartertestimonialsalternatingrowsendorsement

Live preview

full widthLive preview — open it in a new tab for the full-height version.
Open the preview in a new tab

Source

This exact file renders the preview above.

import { Container } from '@/components/ui/layout'
import { Avatar } from '@/components/ui/avatar'
import { testimonials } from '@/content/demo'

/**
 * Alternating quote rows
 *
 * Company name on one side, quote on the other, alternating down the page.
 * Reads as a sequence of endorsements rather than a wall, which suits a page
 * that already has a card-heavy section above it.
 */
export default function LogoQuotePairTestimonials() {
  return (
    <section className="border-b border-line bg-surface-sunken py-section">
      <Container>
        <ul className="flex flex-col divide-y divide-[var(--color-border)]">
          {testimonials.slice(0, 4).map((quote, index) => (
            <li key={quote.name} className="py-10 first:pt-0 last:pb-0">
              <figure
                className={`grid items-center gap-6 lg:grid-cols-[1fr_2fr] lg:gap-12 ${
                  index % 2 === 1 ? 'lg:grid-cols-[2fr_1fr]' : ''
                }`}
              >
                <figcaption className={index % 2 === 1 ? 'lg:order-2' : undefined}>
                  <p className="display-type text-xl font-semibold text-ink-strong">
                    {quote.company}
                  </p>
                  <div className="mt-3 flex items-center gap-2.5">
                    <Avatar name={quote.name} size="sm" decorative />
                    <div>
                      <p className="text-sm font-medium text-ink">{quote.name}</p>
                      <p className="text-xs text-ink-muted">{quote.role}</p>
                    </div>
                  </div>
                </figcaption>
                <blockquote
                  className={`text-md leading-relaxed text-ink ${index % 2 === 1 ? 'lg:order-1' : ''}`}
                >
                  “{quote.quote}”
                </blockquote>
              </figure>
            </li>
          ))}
        </ul>
      </Container>
    </section>
  )
}

components/blocks/sections/testimonials/logo-quote-pair.tsx

import { Container } from '@/components/ui/layout'
import { Avatar } from '@/components/ui/avatar'
import { testimonials } from '@/content/demo'

/**
 * Alternating quote rows
 *
 * Company name on one side, quote on the other, alternating down the page.
 * Reads as a sequence of endorsements rather than a wall, which suits a page
 * that already has a card-heavy section above it.
 */
export default function LogoQuotePairTestimonials() {
  return (
    <section className="border-b border-line bg-surface-sunken py-section">
      <Container>
        <ul className="flex flex-col divide-y divide-[var(--color-border)]">
          {testimonials.slice(0, 4).map((quote, index) => (
            <li key={quote.name} className="py-10 first:pt-0 last:pb-0">
              <figure
                className={`grid items-center gap-6 lg:grid-cols-[1fr_2fr] lg:gap-12 ${
                  index % 2 === 1 ? 'lg:grid-cols-[2fr_1fr]' : ''
                }`}
              >
                <figcaption className={index % 2 === 1 ? 'lg:order-2' : undefined}>
                  <p className="display-type text-xl font-semibold text-ink-strong">
                    {quote.company}
                  </p>
                  <div className="mt-3 flex items-center gap-2.5">
                    <Avatar name={quote.name} size="sm" decorative />
                    <div>
                      <p className="text-sm font-medium text-ink">{quote.name}</p>
                      <p className="text-xs text-ink-muted">{quote.role}</p>
                    </div>
                  </div>
                </figcaption>
                <blockquote
                  className={`text-md leading-relaxed text-ink ${index % 2 === 1 ? 'lg:order-1' : ''}`}
                >
                  “{quote.quote}”
                </blockquote>
              </figure>
            </li>
          ))}
        </ul>
      </Container>
    </section>
  )
}

components/ui/avatar.tsx

import type { ReactNode } from 'react'
import { cn } from '@/lib/cn'
import { initials as toInitials } from '@/lib/format'

/**
 * Avatar / AvatarGroup
 *
 * Foundry ships no photography, so avatars render deterministic initials on a
 * tinted surface. The tint is derived from the name's character codes, which
 * keeps the same person the same colour on every page without a colour field
 * in the data.
 *
 * A decorative avatar next to a visible name is `aria-hidden`; a standalone
 * one exposes the name as its label.
 */
export interface AvatarProps {
  name: string
  size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl'
  /** Suppresses the accessible name when the name is already on screen. */
  decorative?: boolean
  /** Small badge anchored bottom-right, e.g. a presence dot. */
  indicator?: ReactNode
  shape?: 'circle' | 'square'
  className?: string
}

const sizes = {
  xs: 'size-5 text-2xs',
  sm: 'size-7 text-2xs',
  md: 'size-9 text-xs',
  lg: 'size-12 text-sm',
  xl: 'size-16 text-lg',
} as const

const tints = [
  'bg-accent-soft text-accent-soft-ink',
  'bg-success-soft text-success',
  'bg-warning-soft text-warning',
  'bg-info-soft text-info',
  'bg-danger-soft text-danger',
  'bg-surface-sunken text-ink-muted',
] as const

function tintFor(name: string): string {
  let hash = 0
  for (let i = 0; i < name.length; i += 1) hash = (hash * 31 + name.charCodeAt(i)) % 997
  return tints[hash % tints.length] ?? tints[0]
}

export function Avatar({
  name,
  size = 'md',
  decorative = false,
  indicator,
  shape = 'circle',
  className,
}: AvatarProps) {
  return (
    <span className={cn('relative inline-flex shrink-0', className)}>
      <span
        role={decorative ? undefined : 'img'}
        aria-label={decorative ? undefined : name}
        aria-hidden={decorative || undefined}
        className={cn(
          'inline-flex items-center justify-center border border-line font-semibold select-none',
          shape === 'circle' ? 'rounded-full' : 'rounded-md',
          sizes[size],
          tintFor(name),
        )}
      >
        {toInitials(name)}
      </span>
      {indicator ? <span className="absolute -right-0.5 -bottom-0.5">{indicator}</span> : null}
    </span>
  )
}

export interface AvatarGroupProps {
  names: string[]
  size?: AvatarProps['size']
  /** Names beyond this count collapse into a "+n" chip. */
  max?: number
  className?: string
  label?: string
}

export function AvatarGroup({ names, size = 'sm', max = 4, className, label }: AvatarGroupProps) {
  const visible = names.slice(0, max)
  const overflow = names.length - visible.length

  return (
    <span
      className={cn('flex items-center', className)}
      role="group"
      aria-label={label ?? `${names.length} people`}
    >
      {visible.map((name) => (
        <span
          key={name}
          className="-ml-2 first:ml-0 ring-2 ring-[var(--color-surface)] rounded-full"
        >
          <Avatar name={name} size={size} decorative />
        </span>
      ))}
      {overflow > 0 ? (
        <span
          className={cn(
            '-ml-2 inline-flex items-center justify-center rounded-full border border-line bg-surface-sunken font-semibold text-ink-muted ring-2 ring-[var(--color-surface)]',
            sizes[size],
          )}
        >
          +{overflow}
        </span>
      ) : null}
      <span className="sr-only">{names.join(', ')}</span>
    </span>
  )
}

Demo source — adapt to your project. Foundry is not published as a package.

Usage

Reads as a sequence of endorsements rather than a wall, which suits a page that already has a card-heavy section above it.

  • Alternate the column ratio as well as the side, or the rhythm becomes mechanical.
  • Four rows is the ceiling before the alternation stops being interesting.

Variants and states

Every entry below is a genuine difference in behaviour or layout, and every one of them is visible in the preview above.

  • Four rows
  • Alternating column order
  • Ratio flip per row

Accessibility

Figure semantics
Each row is a figure with its caption before or after the quote as the layout requires.
Stable order
Column order flips only at lg; the DOM order never changes.

Foundry implements published ARIA patterns and is tested against them. No WCAG certification is claimed — see the accessibility documentation for what is and is not covered.