Framed Studio Card
The entire about section lives inside one bordered card with small plus-sign corner marks, a square portrait beside the story copy, and a stats strip along the bottom, separated by a rule.
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/framed-studio-card.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/about/about42.tsx instead.
Usage
The file also exports about42Demo, 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 { About42, about42Demo } from "@/components/blocks/about/about42"; export default function Page() { return <About42 {...about42Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | undefined | Small label above the heading, inside the card. |
| heading | string | none | Card heading. |
| story | string | none | Body paragraph next to the portrait. |
| portrait | MediaSlotImage | undefined | Square portrait or photo; falls back to a placeholder via MediaSlot. |
| stats | StatItem[] | none | Stat tiles along the bottom of the card. |
| className | string | none | Extra classes for the outer section element. |
Types
type StatItem = { title: string; value: string };
Behavior notes
- Everything, portrait, copy, and stats, is nested inside a single relatively-positioned bordered card rather than composed from separate blocks side by side, unlike About13's asymmetric image-plus-details-list layout.
- Four small Plus icons from lucide-react are absolutely pinned just outside each corner of the card as static decorative header marks; they carry aria-hidden and never move or animate.
- The stats strip sits below a top border inside the same card, distinct from About14's stats-bar-then-separate-card pattern where the stats and the story card are two visually separate shapes.
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.