About section on a soft muted card with a monospace parenthetical eyebrow, a bold studio wordmark, a large centered statement, a logos strip, and a four-column stats band.
About section housed entirely inside one soft muted card: a monospace parenthetical eyebrow, a bold studio wordmark, a large centered statement, an auto-scrolling logo marquee, and a four-column stats band.
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.
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
npx shadcn add "https://ui.beste.co/r/about58?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/about58?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/about58.tsx, the badge7 component it uses for the eyebrow and the logos caption, and its dependencies.
The installed file exports about58Demo alongside the block: the exact props behind the preview above. Spread it to get a working section in one line.
import { About58, about58Demo } from "@/components/beste/block/about58";
export default function Page() {
return <About58 {...about58Demo} />;
}Then replace the demo with your own props. Written out, the same setup looks like this:
import { About58 } from "@/components/beste/block/about58";
export default function Page() {
return (
<About58
badge={{ label: "Our studio" }}
labels={{ logosCaption: "The teams we build alongside" }}
wordmark="Auralis"
heading="We're Auralis, an independent design studio shaping <strong>calm, confident brands.</strong>"
logos={[
{ src: "https://oud.pics/sm/l/logoipsum-380.png", alt: "Logoipsum" },
{ src: "https://oud.pics/sm/l/logoipsum-388.png", alt: "Logoipsum" },
{ src: "https://oud.pics/sm/l/logoipsum-395.png", alt: "Logoipsum" },
]}
stats={[
{ value: "12yr", title: "Designing alongside founders since 2014." },
{ value: "140+", title: "Brands taken from first sketch to launch." },
{ value: "30", title: "Industry honors for our craft and care." },
{ value: "96%", title: "Of clients return for the next chapter." },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Top eyebrow rendered in a Badge7 |
labels | About58Labels | {} | Optional string overrides; currently just logosCaption |
wordmark | string | – | Large studio wordmark below the eyebrow |
heading | string | – | Centered statement; supports inline HTML (<strong>, entities) |
logos | LogoItem[] | [] | Logos rendered in the auto-scrolling marquee |
stats | StatItem[] | [] | Four-column stats band at the bottom |
className | string | – | Extra classes for the outer <section> |
type About58Labels = { logosCaption?: string };
type LogoItem = { src: string; alt: string };
type StatItem = { value: string; title: string };about58-marquee, 30s, linear, infinite) declared in a scoped <style jsx> block; logos is rendered twice back-to-back ([...logos, ...logos]) to make the loop seamless.animation-play-state: paused) through the named group group/about58.bg-muted card so the loop point isn't a hard crop.grid-cols-2 md:grid-cols-4, independent of stats.length; fewer than four stats leaves visible empty cells rather than reflowing.rounded-md bg-muted card that wraps the entire section content, rather than sitting directly on the page background.about42
About composed inside a bordered studio card with header marks, portrait and a stats strip.
about59
Centered parenthetical eyebrow and a large statement heading, followed by a three-up row of icon pillars pairing a circular icon with a title and one-line description.
about39
About anchored by an oversized numeral with a paragraph and a horizontal image strip.
about46
An about intro followed by a horizontally scrollable strip mixing image, stat, quote and values cards.
about33
About section with an eyebrow label and read-more action on the left, a bold heading with two side-by-side images on the right, and a four-column stats band below.
about61
Two-column about section with a sticky eyebrow and big heading on the left and a long belief paragraph above a border-separated values list on the right.