Banner 1 - Full-width dismissible announcement bar
shadcnblocks/banner1FreeBlock
A thin top bar with centered title, muted supporting text, an inline external link, and a ghost icon button that hides the banner.
Install it
npx shadcn@latest add https://www.shadcnblocks.com/r/banner1.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 Banner1Props {10 title: string;11 description: string;12 linkText: string;13 linkUrl: string;14 defaultVisible?: boolean;15 className?: string;16}1718const Banner1 = ({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}: Banner1Props) => {26 const [isVisible, setIsVisible] = useState(defaultVisible);2728 const handleClose = () => {29 setIsVisible(false);30 };3132 if (!isVisible) return null;3334 return (35 <section36 className={cn("w-full border-b bg-background px-4 py-3", className)}37 >38 <div className="flex items-center justify-between gap-2">39 <div className="flex-1 text-center">40 <span className="text-sm">41 <span className="font-medium">{title}</span>{" "}42 <span className="text-muted-foreground">43 {description}{" "}44 <a45 href={linkUrl}46 className="underline underline-offset-2 hover:text-foreground"47 target="_blank"48 >49 {linkText}50 </a>51 .52 </span>53 </span>54 </div>5556 <Button57 variant="ghost"58 size="icon"59 className="-mr-2 h-8 w-8 flex-none"60 onClick={handleClose}61 >62 <X className="h-4 w-4" />63 </Button>64 </div>65 </section>66 );67};6869export { Banner1 };
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 |
