Dark Contact Band
An inverted, solid-dark closing panel: an oversized invitation heading sits on the left, a short paragraph and outline rounded-full button sit on the right, and a ruled row underneath lists plain-text email, phone, and studio address links.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its button dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/dark-contact-band.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/cta/cta79.tsx instead.
Usage
The file also exports cta79Demo, 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 { Cta79, cta79Demo } from "@/components/blocks/cta/cta79"; export default function Page() { return <Cta79 {...cta79Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| heading | string | "Let's talk about your project" | Oversized invitation heading. |
| description | string | none | Short paragraph beside the heading. |
| actionLabel | string | "Get in touch" | Label for the outline pill button. |
| actionHref | string | "#" | Link target for the pill button. |
| string | "[email protected]" | Email address rendered as a mailto link. | |
| phone | string | "+1 (555) 010-2040" | Phone number rendered as a tel link. |
| address | string | "142 Harbor St, Brooklyn, NY" | Plain-text studio address. |
| className | string | none | Extra classes for the outer section element. |
Behavior notes
- The pill button is an inert link (`render={<Link/>}`) pointing at `actionHref` (`#` by default); the email and phone items are plain mailto/tel anchors, none submit anything or connect to a real contact flow.
- The dark treatment (`bg-foreground text-background`) is a deliberate, scoped monochrome exception for this band, not a sitewide theme change.
More CTA Blocks
View all →centered-newsletter-cta
Centered Newsletter CTA
Minimal centered call-to-action with heading, description, and action buttons.
split-layout-newsletter-cta
Split Layout Newsletter CTA
Two-column call-to-action with a decorative image on one side and a feature list plus subscribe form on the other.
newsletter-social-proof-cta
Newsletter CTA with Social Proof
Newsletter call-to-action with an avatar stack, subscriber count, and a testimonial quote.
banner-cta
Banner CTA
Horizontal banner call-to-action with heading and action buttons side by side.
stats-cta
Stats CTA
Call-to-action section with impressive statistics and trust indicators above action buttons.
multi-card-cta
Multi-Card CTA
Three action cards side by side, each offering a different path to conversion.