Hero with Feature List and Image

Two-column hero with heading, description, icon-only feature list, and CTA on one side and a square image on the other. Image position is configurable.

PRO

Hero111: Hero with Feature List and Image

Two-column hero pairing a heading, description, and a short list of icon-led proof points with a square product or facility image. The image side can swap to either column through displayPosition, and the heading supports an inline highlighted phrase.

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.

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

Base UI flavor

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

This installs the block to components/beste/block/hero111.tsx and the button shadcn/ui primitive it depends on.

Quick start

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

tsx
import { Hero111, hero111Demo } from "@/components/beste/block/hero111";

export default function Page() {
  return <Hero111 {...hero111Demo} />;
}

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

tsx
import { ShieldCheck, Users, Zap } from "lucide-react";
import { Hero111 } from "@/components/beste/block/hero111";

export default function Page() {
  return (
    <Hero111
      heading="Infrastructure built to <strong>outlast</strong> the warranty."
      description="Twenty years of commercial electrical and network installs, backed by a certified in-house crew."
      displayPosition="left"
      features={[
        { title: "Licensed and insured on every job", icon: ShieldCheck },
        { title: "24/7 emergency response team", icon: Zap },
        { title: "Dedicated project manager", icon: Users },
      ]}
      buttons={[{ label: "Request a quote", href: "https://beste.co" }]}
      image={{
        src: "https://images.unsplash.com/photo-1581092160562-40aa08e78837?w=1200&h=1200&fit=crop",
        alt: "Electrician inspecting server room wiring",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
headingstringHeadline HTML; wrap a phrase in <strong> to highlight it in the primary color
descriptionstringSupporting paragraph under the heading
featuresFeatureItem[][]Icon-led proof points listed under the description
buttonsButtonItem[][]CTA row rendered below the feature list
image{ src: string; alt: string }Square image for the opposite column
displayPosition"left" | "right""right"Which side the image renders on; the copy column takes the other side
classNamestringExtra classes for the outer <section>
ts
type FeatureItem = {
  title: string;
  icon: LucideIcon;
};

type ButtonItem = {
  label: string;
  href?: string;
  variant?: "default" | "secondary" | "outline" | "ghost";
};

Behavior notes

More Hero blocks

View all Hero
FREE

hero68

Centered Hero with Feature Icons

Centered hero with three feature highlights displayed as icon cards with descriptions below the CTA. Perfect for platform and infrastructure products.

PRO

hero120

Editorial Image Hero

Centered editorial hero with eyebrow, large heading, description, dual dark and outline CTAs, and a wide 16:9 image with a mono caption below.

PRO

hero121

Split Hero with Stats

Split hero with a big headline and CTA on the left, a divided vertical stat rail on the right, and a full-width wide image strip below.

FREE

hero7

Centered Hero with Media

Centered hero with optional badge, heading, description, dual action buttons, and a featured image below. Perfect for product launches and landing pages.

PRO

hero122

Typographic Card Hero

Centered typographic hero on a muted card with an oversized heading, inline CTA, and a bottom monospace meta row of three labels.

PRO

hero91

Split Hero with Feature List Panel

50/50 split hero with muted content panel and feature list left, video/image right