Staaarter

Service Offerings with Arrows

A centered eyebrow and heading sit above a responsive grid of bordered service cards, each with a title, a circled trailing arrow icon, and a short description, for a services-listing or solutions-overview section.

By Staaarter Team
Feature
Docs
Live preview

Docs

Installation

A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/service-offerings-with-arrows.json

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

Usage

The file also exports feature143Demo, 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 { Feature143, feature143Demo } from "@/components/blocks/feature/feature143";

export default function Page() {
  return <Feature143 {...feature143Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstringnoneSmall label above the heading.
headingstringnoneSection heading.
descriptionstringnoneSupporting copy under the heading.
servicesFeature143Service[]noneService cards shown in the grid.
classNamestringnoneExtra classes for the outer section element.

Types

type Feature143Service = { title: string; description: string };

Behavior notes

  • Fully static server component, no client-side state.
  • Cards are deliberately not links (unlike feature141's tool grid), to keep this block usable as a plain descriptive services list without implying every card navigates somewhere; the arrow is decorative.
  • Every card uses a single fixed ArrowUpRight icon rather than a per-item icon prop.