Marquee Accent About
A faint, oversized repetition of a wordmark sits behind the about copy as a static background accent, with two offset images and a bottom stats row layered on top.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its media-slot dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/marquee-accent-about.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/about/about44.tsx instead.
Usage
The file also exports about44Demo, the exact props behind the preview above. Spread it to get a working section in one line, then replace it with your own data.
import { About44, about44Demo } from "@/components/blocks/about/about44"; export default function Page() { return <About44 {...about44Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| wordmark | string | none | Word repeated across the faint background strip, e.g. a company name. |
| heading | string | none | Foreground section heading. |
| description | string | undefined | Foreground intro text. |
| images | MediaSlotImage[] | [] | Up to two offset images; the second is only rendered when present and is nudged down on sm+ screens. |
| stats | StatItem[] | [] | Stat tiles in a row below the images. |
| className | string | none | Extra classes for the outer section element. |
Types
type StatItem = { title: string; value: string };
Behavior notes
- Despite the 'marquee' name inherited from its inspiration, the wordmark strip is fully static: a single aria-hidden paragraph repeats `wordmark` six times with whitespace-nowrap and a very low opacity token (text-muted-foreground/5), no animation library or CSS keyframe involved.
- Only the second image in `images` gets the sm:mt-12 offset, so passing a single image renders a plain, un-offset photo instead of forcing a two-image layout, unlike About35's media-reel pattern which expects a fuller set.
- The stats row reuses the same dl/dt/dd shape as About14's stats bar, but here it sits at the bottom of a layered composition rather than leading the section.
More About Blocks
View all →team-mission
Team & Mission
Two-column about section with mission statement, company stats, and team member grid.
values-with-team-photo
Values with Team Photo
Full-width photo with a three-column values grid below.
timeline-milestones
Timeline & Milestones
Company stats on the left and a vertical timeline of milestones on the right.
founder-quote-team
Founder Quote & Team
Founder blockquote with avatar, followed by a horizontal team member row.
image-text-split
Image & Text Split
Tall image on the left, company story, inline stats, and CTAs on the right.
numbered-principles
Numbered Principles
Heading on the left and numbered company principles on the right.