Staaarter

Company Profile

Asymmetric layout with company story and image on the left, and a vertical list of company details on the right. Great for press and investor pages.

By Staaarter Team
About
Docs
Live preview

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/company-profile.json

Prefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/about/about13.tsx instead.

Usage

The file also exports about13Demo, 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 { About13, about13Demo } from "@/components/blocks/about/about13";

export default function Page() {
  return <About13 {...about13Demo} />;
}

Props

PropTypeDefaultDescription
headingstringnoneHeading under the image.
storystringnoneCompany story paragraph under the heading.
image{ src: string; alt: string }undefinedImage above the heading; renders a placeholder when omitted.
detailsDetailItem[]noneLabel/value rows in the right-hand fact sheet.
classNamestringnoneExtra classes for the outer section element.

Types

type DetailItem = {
  label: string;
  value: string;
};

Behavior notes

  • details is rendered as a divided list (divide-y) inside a single bordered card, not individual cards per row, so it reads like a fact sheet rather than a stat grid.
  • The right-hand column is height-fit (h-fit) so it does not stretch to match a long story paragraph on the left; a long details list can end up taller than the story column instead.
  • The grid track ratio is 1.4:1 in favor of the story column, distinguishing this from About3's roughly even split.