Background Pattern 1 - Full-screen radial gradient background pattern
shadcnblocks/background-pattern1FreeBlock
This component generates a full-screen background pattern with a radial gradient effect, applying customizable styles through optional class names. It features a placeholder pattern element and a visually striking top primary radial gradient.
Install it
npx shadcn@latest add https://www.shadcnblocks.com/r/background-pattern1.jsonSource
1import { PatternPlaceholder } from "@/components/shadcnblocks/pattern-placeholder";2import { cn } from "@/lib/utils";34interface BackgroundPattern1Props {5 className?: string;6}78const BackgroundPattern1 = ({ className }: BackgroundPattern1Props) => {9 return (10 <section11 className={cn(12 "relative h-svh max-h-[1200px] min-h-[600px] w-full",13 className,14 )}15 >16 <PatternPlaceholder />17 {/* Background Pattern */}18 {/* Top Primary Radial Background Pattern */}19 <div20 className="absolute inset-0 z-0"21 style={{22 background:23 "radial-gradient(125% 125% at 50% 10%, var(--background) 40%, var(--primary) 100%)",24 }}25 />26 </section>27 );28};2930export { BackgroundPattern1 };
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 |
