Page Heading
shadcncraft/page-headingFreeComponent
A component that acts as the text-focused version of a hero banner. This component combines a pre-heading label, an H1 heading, supporting description text, and call-to-action buttons.
Install it
npx shadcn@latest add https://shadcncraft.com/r/page-heading.jsonSource
1import { cn } from "@/lib/utils";2import { Tagline } from "@/components/shadcncraft/pro-marketing/tagline";34function PageHeading({5 alignment = "left",6 className,7 ...props8}: React.ComponentProps<"div"> & { alignment?: "left" | "center" }) {9 return (10 <div11 data-slot="page-heading"12 className={cn(13 "group/page-heading flex max-w-3xl flex-col gap-4",14 alignment === "left" && "items-start text-left",15 alignment === "center" && "mx-auto items-center text-center",16 className17 )}18 {...props}19 />20 );21}2223function PageHeadingTagline({ ...props }: React.ComponentProps<typeof Tagline>) {24 return <Tagline variant="badge" {...props} />;25}2627function PageHeadingTitle({ className, ...props }: React.ComponentProps<"h1">) {28 return (29 <h130 data-slot="page-heading-title"31 className={cn(32 "cn-font-heading scroll-m-20 text-5xl font-medium tracking-tight text-balance lg:text-6xl",33 className34 )}35 {...props}36 />37 );38}3940function PageHeadingBody({ className, ...props }: React.ComponentProps<"div">) {41 return (42 <div43 data-slot="page-heading-body"44 className={cn("max-w-xl text-lg text-pretty text-muted-foreground", className)}45 {...props}46 />47 );48}4950function PageHeadingActions({ className, ...props }: React.ComponentProps<"div">) {51 return (52 <div53 data-slot="page-heading-actions"54 className={cn("flex w-full flex-col gap-2 sm:w-fit sm:flex-row", className)}55 {...props}56 />57 );58}5960export {61 PageHeading,62 PageHeadingActions,63 PageHeadingBody,64 PageHeadingTagline,65 PageHeadingTitle,66};
What it pulls in
Other registry items
Files it writes
More from shadcncraft
All 26 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Avatar Stackavatar-stack | shadcncraft | Components | Free | no deps | |
| Badgebadge | shadcncraft | Components | Free | no deps | |
| Featured Iconfeatured-icon | shadcncraft | Components | Free | no deps | |
| Image Zoomimage-zoom | shadcncraft | Components | Free | 1 dep | |
| Marqueemarquee | shadcncraft | Components | Free | no deps | |
| Placeholder Logoplaceholder-logo | shadcncraft | Components | Free | no deps | |
| Profile Cardprofile-card | shadcncraft | Components | Free | no deps | |
| Section Headingsection-heading | shadcncraft | Components | Free | no deps |
