← GalleryDownload source code
- Category
- Shaders
- Tier
- Free
- Prompt
- 581 words
- Includes
- Prompt + source code
Shaders
Gradient Mesh Hero Shader — Aurora Wash
reacttailwindtypescriptvite
The prompt
# INTEGRATE AN EXISTING REACT COMPONENT
YOU ARE GIVEN A TASK TO INTEGRATE AN EXISTING REACT COMPONENT IN THE CODEBASE
THE CODEBASE SHOULD SUPPORT:
- SHADCN PROJECT STRUCTURE
- TAILWIND CSS
- TYPESCRIPT
IF IT DOESN'T, PROVIDE INSTRUCTIONS ON HOW TO SETUP PROJECT VIA SHADCN CLI, INSTALL TAILWIND OR TYPESCRIPT.
DETERMINE THE DEFAULT PATH FOR COMPONENTS AND STYLES.
IF DEFAULT PATH FOR COMPONENTS IS NOT /COMPONENTS/UI, PROVIDE INSTRUCTIONS ON WHY IT'S IMPORTANT TO CREATE THIS FOLDER
COPY-PASTE THIS COMPONENT TO /COMPONENTS/UI FOLDER:
```tsx
hero-section-with-smooth-bg-shader.tsx
import { MeshGradient } from "@paper-design/shaders-react"
import { useEffect, useState } from "react"
interface HeroSectionProps {
title?: string
highlightText?: string
description?: string
buttonText?: string
onButtonClick?: () => void
colors?: string[]
distortion?: number
swirl?: number
speed?: number
offsetX?: number
className?: string
titleClassName?: string
descriptionClassName?: string
buttonClassName?: string
maxWidth?: string
veilOpacity?: string
fontFamily?: string
fontWeight?: number
}
export function HeroSection({
title = "Intelligent AI Agents for",
highlightText = "Smart Brands",
description = "Transform your brand and evolve it through AI-driven brand guidelines and always up-to-date core components.",
buttonText = "Join Waitlist",
onButtonClick,
colors = ["#72b9bb", "#b5d9d9", "#ffd1bd", "#ffebe0", "#8cc5b8", "#dbf4a4"],
distortion = 0.8,
swirl = 0.6,
speed = 0.42,
offsetX = 0.08,
className = "",
titleClassName = "",
descriptionClassName = "",
buttonClassName = "",
maxWidth = "max-w-6xl",
veilOpacity = "bg-white/20 dark:bg-black/25",
fontFamily = "Satoshi, sans-serif",
fontWeight = 500,
}: HeroSectionProps) {
const [dimensions, setDimensions] = useState({ width: 1920, height: 1080 })
const [mounted, setMounted] = useState(false)
useEffect(() => {
setMounted(true)
const update = () =>
setDimensions({
width: window.innerWidth,
height: window.innerHeight,
})
update()
window.addEventListener("resize", update)
return () => window.removeEventListener("resize", update)
}, [])
const handleButtonClick = () => {
if (onButtonClick) {
onButtonClick()
}
}
return (
<section className={`relative w-full min-h-screen overflow-hidden bg-background flex items-center justify-center ${className}`}>
<div className="fixed inset-0 w-screen h-screen">
{mounted && (
<>
<MeshGradient
width={dimensions.width}
height={dimensions.height}
colors={colors}
distortion={distortion}
swirl={swirl}
grainMixer={0}
grainOverlay={0}
speed={speed}
offsetX={offsetX}
/>
<div className={`absolute inset-0 pointer-events-none ${veilOpacity}`} />
</>
)}
</div>
<div className={`relative z-10 ${maxWidth} mx-auto px-6 w-full`}>
<div className="text-center">
<h1
className={`font-bold text-foreground text-balance text-4xl sm:text-5xl md:text-6xl xl:text-[80px] leading-tight sm:leading-tight md:leading-tight lg:leading-tight xl:leading-[1.1] mb-6 lg:text-7xl ${titleClassName}`}
style={{ fontFamily, fontWeight }}
>
{title} <span className="text-primary">{highlightText}</span>
</h1>
<p className={`text-lg sm:text-xl text-white text-pretty max-w-2xl mx-auto leading-relaxed mb-10 px-4 ${descriptionClassName}`}>
{description}
</p>
<button
onClick={handleButtonClick}
className={`px-6 py-4 sm:px-8 sm:py-6 rounded-full border-4 bg-[rgba(63,63,63,1)] border-card text-sm sm:text-base text-white hover:bg-[rgba(63,63,63,0.9)] transition-colors ${buttonClassName}`}
>
{buttonText}
</button>
</div>
</div>
</section>
)
}
demo.tsx
import { HeroSection } from "@/components/ui/hero-section-with-smooth-bg-shader";
export default function DemoOne() {
return <HeroSection
distortion={1.2}
speed={0.8}
/>;
}
/*
Usage examples:
// Basic usage with defaults
<HeroSection />
// Custom content
<HeroSection
title="Revolutionary AI Solutions for"
highlightText="Modern Business"
description="Streamline operations with cutting-edge AI technology"
buttonText="Get Started"
onButtonClick={() => console.log('Button clicked!')}
/>
// Custom colors and animation
<HeroSection
colors={["#ff6b6b", "#4ecdc4", "#45b7d1"]}
distortion={1.2}
speed={0.8}
/>
*/
```
INSTALL NPM DEPENDENCIES:
```bash
@paper-design/shaders-react
```
## IMPLEMENTATION GUIDELINES
1. ANALYZE THE COMPONENT STRUCTURE AND IDENTIFY ALL REQUIRED DEPENDENCIES
2. REVIEW THE COMPONENT'S ARGUMENS AND STATE
3. IDENTIFY ANY REQUIRED CONTEXT PROVIDERS OR HOOKS AND INSTALL THEM
4. QUESTIONS TO ASK
- WHAT DATA/PROPS WILL BE PASSED TO THIS COMPONENT?
- ARE THERE ANY SPECIFIC STATE MANAGEMENT REQUIREMENTS?
- ARE THERE ANY REQUIRED ASSETS (IMAGES, ICONS, ETC.)?
- WHAT IS THE EXPECTED RESPONSIVE BEHAVIOR?
- WHAT IS THE BEST PLACE TO USE THIS COMPONENT IN THE APP?
## STEPS TO INTEGRATE
0. COPY PASTE ALL THE CODE ABOVE IN THE CORRECT DIRECTORIES
1. INSTALL EXTERNAL DEPENDENCIES
2. FILL IMAGE ASSETS WITH UNSPLASH STOCK IMAGES YOU KNOW EXIST
3. USE LUCIDE-REACT ICONS FOR SVGS OR LOGOS IF COMPONENT REQUIRES THEM



