Banner 2 - Container announcement bar with dismiss
shadcnblocks/banner2FreeBlock
A muted banner inside the site container with inline title, description, link, and ghost close icon that removes the bar when clicked.
Install it
npx shadcn@latest add https://www.shadcnblocks.com/r/banner2.jsonSource
1"use client";23import { X } from "lucide-react";4import { useState } from "react";56import { Button } from "@/components/ui/button";7import { cn } from "@/lib/utils";89interface Banner2Props {10 title: string;11 description: string;12 linkText: string;13 linkUrl: string;14 defaultVisible?: boolean;15 className?: string;16}1718const Banner2 = ({19 title = "Version 2.0 is now available!",20 description = "Read the full release notes",21 linkText = "here",22 linkUrl = "#",23 defaultVisible = true,24 className,25}: Banner2Props) => {26 const [isVisible, setIsVisible] = useState(defaultVisible);2728 const handleClose = () => {29 setIsVisible(false);30 };3132 if (!isVisible) return null;3334 return (35 <section className={cn("w-full bg-muted px-4 py-3", className)}>36 <div className="container">37 <div className="flex items-center gap-2">38 <div className="flex-1">39 <span className="text-sm">40 <span className="font-medium">{title}</span>{" "}41 <span className="text-muted-foreground">42 {description}{" "}43 <a44 href={linkUrl}45 className="underline underline-offset-2 hover:text-foreground"46 target="_blank"47 >48 {linkText}49 </a>50 .51 </span>52 </span>53 </div>5455 <Button56 variant="ghost"57 size="icon"58 className="-mr-2 h-8 w-8 flex-none"59 onClick={handleClose}60 >61 <X className="h-4 w-4" />62 </Button>63 </div>64 </div>65 </section>66 );67};6869export { Banner2 };
Files it writes
More from shadcnblocks
All 3,968 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| About 1 - Multi-Section Mission Valuesabout1 | shadcnblocks | Blocks | Paid | no deps | |
| About 10 - Sticky Sidebar Company Profileabout10 | shadcnblocks | Blocks | Paid | no deps | |
| About 12 - Agency Profile with Process Cardsabout12 | shadcnblocks | Blocks | Paid | no deps | |
| About 13 - Story with Avatar Profileabout13 | shadcnblocks | Blocks | Paid | no deps | |
| About 14 - About with Hero Imageabout14 | shadcnblocks | Blocks | Paid | no deps | |
| About 15 - Tilted Photo Profile Cardabout15 | shadcnblocks | Blocks | Paid | no deps | |
| About 16 - Why Us Stats Sectionabout16 | shadcnblocks | Blocks | Paid | no deps | |
| About 17 - Interactive Tab Profileabout17 | shadcnblocks | Blocks | Paid | no deps |
