Four-column numbered workflow section showing project phases like Discovery, Strategy, Design, and Deliver. Perfect for freelancers and agencies explaining their project methodology.
Four-column numbered process section: a large faded index number sits above each step's title and description.
Free block
This block is free. No license or account is required: install it with the CLI and use it in unlimited projects.
Radix flavor
npx shadcn add "https://ui.beste.co/r/portfolio84"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/portfolio84"This installs the block to components/beste/block/portfolio84.tsx and its dependencies.
The installed file exports portfolio84Demo alongside the block: the exact props behind the preview above. Spread it to get a working process section in one line.
import { Portfolio84, portfolio84Demo } from "@/components/beste/block/portfolio84";
export default function ProcessPage() {
return <Portfolio84 {...portfolio84Demo} />;
}Then replace the demo with your own props. Written out, the same setup looks like this:
import { Portfolio84 } from "@/components/beste/block/portfolio84";
export default function ProcessPage() {
return (
<Portfolio84
heading="How we work"
description="A simple, transparent process from kickoff to launch."
items={[
{ badge: "01", title: "Kickoff", description: "Align on goals, scope, and timeline." },
{ badge: "02", title: "Build", description: "Design and development in weekly sprints." },
{ badge: "03", title: "Launch", description: "QA, handoff, and go-live support." },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
heading | string | – | Section heading |
description | string | – | Section intro text |
items | StepItem[] | [] | Process steps rendered across the grid |
className | string | – | Extra classes for the outer <section> |
type StepItem = {
badge: string;
title: string;
description: string;
};badge (e.g. "01") is not a shadcn Badge; it's plain text rendered at text-5xl font-bold text-primary/20, giving the numeral a faint watermark look behind the title.md:grid-cols-2 lg:grid-cols-4, so on medium screens four steps wrap into two rows of two before reaching the full four-column layout at lg.portfolio97
Three-column categorized preferences with checkmarks and X icons showing preferred vs non-preferred work styles. Perfect for freelancers clarifying ideal project types and engagement models.
portfolio101
Portfolio grid of project cards with hover-zoom imagery, numbered titles, category tags and a seal arrow link.
portfolio110
One large featured project with image, category, and title, followed by a row of smaller project cards. Monochrome studio styling.
portfolio98
Vertical timeline showcasing career milestones with achievement icons, year badges, descriptions, and key metrics. Perfect for professionals displaying awards, launches, and growth achievements.
portfolio102
Full-bleed auto-scrolling marquee of studio projects with a header and view-all CTA.
portfolio112
Editorial project index of ruled rows — padded numeral, project name, client and year, with a floating thumbnail revealed on hover.