BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/shadcn-ui-blocks/hero-05

Hero 05

shadcn-ui-blocks-shadcnship/hero-05
FreeBlock

Minimal full-screen centered hero with headline, subtitle, and CTA buttons on a clean background. Use it as a distraction-free entry point for products that rely on strong copy rather than visuals.

See it running

Open the demo on shadcn-ui-blocks

shadcnship.com/blocks/hero-05
Open
This registry sends X-Frame-Options, so its page cannot be embedded here. The link is the same page the frame would have shown.

Install it

npx shadcn@latest add https://shadcnship.com/r/hero-05.json

Source

src/registry/blocks/hero-05/hero.tsxshadcnship.com/r/hero-05.json
1import { ArrowUpRight } from "lucide-react";
2import { cn } from "@/lib/utils";
3import { Badge } from "@/components/ui/badge";
4import { Button } from "@/components/ui/button";
5import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
6
7interface Hero05Props {
8 badge?: {
9 text: string;
10 avatars?: string[];
11 };
12 title?: string;
13 description?: string;
14 buttons?: {
15 text: string;
16 url?: string;
17 icon?: React.ReactNode;
18 variant?: "default" | "outline" | "ghost" | "secondary" | "link";
19 }[];
20 className?: string;
21}
22
23const Hero05 = ({
24 badge = {
25 text: "Trusted by developers",
26 avatars: [
27 "https://www.shadcnship.com/images/avatars/avatar-1.webp",
28 "https://www.shadcnship.com/images/avatars/avatar-2.webp",
29 "https://www.shadcnship.com/images/avatars/avatar-3.webp",
30 ],
31 },
32 title = "Shadcn UI Blocks, Copy & Customize",
33 description = "Pre-built landing page components for React. Just copy the code and focus on what matters — your product.",
34 buttons = [
35 {
36 text: "Browse Components",
37 url: "#",
38 icon: <ArrowUpRight className="size-4" />,
39 },
40 { text: "View Docs", url: "#", variant: "outline" },
41 ],
42 className,
43}: Hero05Props) => {
44 return (
45 <section
46 className={cn(
47 "relative w-full overflow-hidden py-16 md:py-24",
48 className,
49 )}
50 >
51 <div className="container mx-auto px-6">
52 <div className="flex flex-col items-center gap-4 text-center">
53 {badge && (
54 <Badge
55 variant="secondary"
56 className="gap-2 border border-border px-4 py-1"
57 >
58 {badge.avatars && badge.avatars.length > 0 && (
59 <div className="flex -space-x-2">
60 {badge.avatars.map((avatar, i) => (
61 <Avatar
62 key={`avatar-${i}`}
63 className="size-5 border-2 border-background"
64 >
65 <AvatarImage src={avatar} />
66 <AvatarFallback>U</AvatarFallback>
67 </Avatar>
68 ))}
69 </div>
70 )}
71 <span>{badge.text}</span>
72 </Badge>
73 )}
74
75 <h1 className="text-4xl leading-tight font-medium tracking-tight md:text-5xl lg:text-6xl">
76 {title}
77 </h1>
78
79 <p className="max-w-2xl text-muted-foreground md:text-lg">
80 {description}
81 </p>
82
83// … truncated

What it pulls in

npm packages

  • lucide-react

Other registry items

  • button
  • badge
  • avatar

Files it writes

  • src/registry/blocks/hero-05/hero.tsx

Facts

Registry
shadcn-ui-blocks
Type
registry:block
Access
Free
Files written
1
Licence
the repository states none
First indexed
2026-08-01
Last confirmed
today

Go to the source

Docs on shadcn-ui-blocks shadcnship.com arnaudvolp/shadcnship on GitHub Raw registry item This item as JSON

More from shadcn-ui-blocks

All 74 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Square Grid Backgroundbackground-01shadcn-ui-blocksBlocksFreeno deps
Dot Pattern Backgroundbackground-02shadcn-ui-blocksBlocksFreeno deps
Diagonal Stripes Backgroundbackground-03shadcn-ui-blocksBlocksFreeno deps
Vertical Lines Backgroundbackground-04shadcn-ui-blocksBlocksFreeno deps
Interactive Grid Backgroundbackground-05shadcn-ui-blocksBlocksFreeno deps
Banner 01banner-01shadcn-ui-blocksBlocksFree1 dep
Blog 01blog-01shadcn-ui-blocksBlocksFreeno deps
Changelog 01changelog-01shadcn-ui-blocksBlocksFreeno deps
BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex