Logos Hero

Workplace programmes

Careforthepeoplewhoholdyourcompanytogether.

Altair works with a handful of teams each year: confidential sessions for staff, paid for by the employer, never reported back. Slow, private, and unusually well attended.

Working with

  • Partner logo
  • Partner logo
  • Partner logo
  • Partner logo
  • Partner logo
About this block

Logos HeroPRO

A centred hero with an eyebrow, a serif headline that settles in word by word, an intro and a sliding-marker pill, closed by a ruled row where greyscale partner logos drift right to left behind soft edge fades, next to a small-caps label.

Hero185: Logos Hero

A centred hero for a business audience: headline, intro and a pill, closed by a ruled row where greyscale partner logos drift right to left behind soft edge fades beside a small-caps label.

Upgrade to Pro

Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.

Upgrade Now

Installation

Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/hero185?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/hero185?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/hero185.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.

Quick start

The installed file exports hero185Demo alongside the block: the exact props behind the preview above. Spread it to get a working hero in one line.

tsx
import { Hero185, hero185Demo } from "@/components/beste/block/hero185";

export default function Page() {
  return <Hero185 {...hero185Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Hero185 } from "@/components/beste/block/hero185";

export default function Page() {
  return (
    <Hero185
      eyebrow="Workplace programmes"
      heading="Care for the people who hold your company together."
      description="Confidential sessions for staff, paid for by the employer, never reported back."
      button={{ label: "Talk to us about your team", href: "/workplace" }}
      logosLabel="Working with"
      logos={[
        { src: "/logos/one.png", alt: "Partner logo" },
        { src: "/logos/two.png", alt: "Partner logo" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the headline
headingstringHeadline, rendered as the page h1 through Text1
descriptionstringParagraph under the headline
buttonActionButtonPill action
logosLabelstringSmall-caps label beside the marquee
logosLogo[][]Partner logos; the track renders them twice
classNamestringExtra classes for the outer <section>
ts
type Logo = {
  src: string;
  alt: string;
};

type ActionButton = {
  label: string;
  href: string;
  tone?: "primary" | "light" | "dark" | "outline";
};

Behavior notes

  • The logo track is the array rendered twice and translated exactly -50%, which is what makes the loop seamless: at the halfway point the second copy sits precisely where the first began.
  • Spacing is pr-12 on each item rather than a gap on the track, because a gap leaves one extra space at the seam and the loop would visibly jump once per cycle.
  • The duplicated half carries aria-hidden, so a screen reader reads each partner once.
  • Logos are shrink-0 max-w-none object-contain on top of h-7 w-auto; without those a flex child gets compressed horizontally while its height stays fixed and the marks come out squashed.
  • The marquee is dropped entirely under useReducedMotion, leaving a static row rather than one paused mid-slide.
  • The edge fades are a mask-image gradient on the overflow container, so logos dissolve at both sides instead of being cut off by the clip; the label beside it keeps shrink-0 so it never compresses.
  • The headline runs with trigger="mount", and the logo row waits on 0.4 + heading.split(" ").length * 0.07 + 0.4, so it arrives last.

More Hero blocks

View all Hero
PRO

hero176

Unveiling Hero

A centred hero: eyebrow, a serif headline settling in word by word, intro and two sliding-marker pills, then a wide photograph that unveils itself from a smaller inset frame and keeps drifting as the page scrolls, closed by a row of dotted facts.

PRO

hero180

Centred Serif Hero

The plainest hero in the language: a centred eyebrow, a serif headline that settles in word by word, an intro, two sliding-marker pills and an avatar trust line, with no image at all.

PRO

hero184

Figures Hero

A text hero with an eyebrow and a serif headline that settles in word by word on the left, the intro and two sliding-marker pills on the right, and a ruled row of three serif figures that count up beneath, with no image.

PRO

hero182

Centred Photo Hero

A full-height photographic hero with everything centred: the photograph zooms out on load and drifts slower than the page under a dark scrim and film grain, beneath an eyebrow, a serif headline that settles in word by word, an intro and two sliding-marker pills.

PRO

hero120

Editorial Image Hero

Centered editorial hero with eyebrow, large heading, description, dual dark and outline CTAs, and a wide 16:9 image with a mono caption below.

PRO

hero159

Photo Collage Hero

A centered hero with an eyebrow, light display heading, and two actions above a staggered three-photo collage whose raised middle tile floats a live booking confirmation.