Story Rail About

The Studio
Est. 2016

We name the thing,
then we make it move.

Polaris started in a borrowed loft with one stubborn belief — that a brand is a verb before it is a logo. Most studios polish surfaces. We start at the sentence that explains why the company exists, and we do not stop until that sentence can stand on a billboard.

Today we are a twelve-person creative studio working between strategy and motion. Naming, identity, packaging, the launch film — we hold the whole arc so the idea never gets diluted in the handoff.

We take four clients a season. No accounts, no busywork, no decks that nobody reads. Just a small room of people who would rather make one unforgettable thing than ten forgettable ones.

Read Our Manifesto
Studio wall covered in pinned sketches and type specimens

Our wall, three days before the Solstice launch.

About this block

Story Rail AboutPRO

Sticky eyebrow rail beside a story column and an offset captioned image.

About41: Story Rail About

About section with a sticky vertical eyebrow rail (badge, an "Est." marker, and a short divider line) beside a multi-paragraph story column and a CTA, closing with an offset, captioned portrait.

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/about41?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

This installs the block to components/beste/block/about41.tsx, the badge6 and button1 components it uses for the eyebrow label and the CTA, and its dependencies.

Quick start

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

tsx
import { About41, about41Demo } from "@/components/beste/block/about41";

export default function Page() {
  return <About41 {...about41Demo} />;
}

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

tsx
import { About41 } from "@/components/beste/block/about41";

export default function Page() {
  return (
    <About41
      label="The Studio"
      est="Est. 2016"
      heading="We name the thing,<br /><strong>then we make it move.</strong>"
      paragraphs={[
        "Polaris started in a borrowed loft with one stubborn belief: a brand is a <strong>verb before it is a logo</strong>.",
        "Today we are a <strong>twelve-person creative studio</strong> working between strategy and motion.",
      ]}
      button={{ label: "Read Our Manifesto", href: "https://beste.co" }}
      image={{
        src: "https://images.unsplash.com/photo-1497032205916-ac775f0649ae?w=900&h=1200&fit=crop",
        alt: "Studio wall covered in sketches",
      }}
      caption="Our wall, three days before the launch."
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow label rendered inside the badge
eststringText beneath the badge in the sticky left rail
headingstringRendered via dangerouslySetInnerHTML
paragraphsstring[][]Story column body; each entry rendered independently via dangerouslySetInnerHTML
buttonActionLinkCTA below the paragraphs
imageImageItemOffset portrait on the right
captionstringCaption beneath the portrait
classNamestringExtra classes for the outer <section>
ts
type ActionLink = { label: string; href: string };
type ImageItem = { src: string; alt: string };

Behavior notes

  • The badge renders with orientation="vertical" (stacking the accent square above the label), a fixed choice inside About41; the block itself does not expose an orientation prop.
  • The left rail (badge, est, and a short vertical divider line) is lg:sticky lg:top-24 self-start, so it stays pinned near the top of the viewport while the story column scrolls beneath it on large screens.
  • Each entry in paragraphs is rendered independently through dangerouslySetInnerHTML, so <strong> (or other inline HTML) must be authored directly into every string; <strong> spans render text-foreground against the otherwise muted paragraph text.
  • The portrait column is offset downward on desktop (md:mt-24) so it does not align with the top of the story column, and it accepts an optional caption beneath it.
  • The three-column grid uses fixed left/right tracks (180px and minmax(0,360px)), with the story column filling whatever space remains between them.

More About blocks

View all About
PRO

about50

Chaptered About

A pinned studio image beside a numbered, chaptered about story.

PRO

about23

Story, Image & Team Row

Two-column layout with company story, stats, and leadership quote on the left, team photo and avatar row on the right.

PRO

about53

Pinned Photos About

About with two subtly rotated, captioned studio photos clustered beside the statement.

PRO

about24

Company Heritage & Features

Company story with image, border-accented feature highlights, and stats row. Great for craft, heritage, and product-focused brands.

PRO

about61

Belief Statement Values

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.

PRO

about34

About Stats Grid

About section: eyebrow label, two-tone heading, two portraits beside a 2x2 stats grid.