Create distinctive, production-grade web interfaces using React, Tailwind, and shadcn/ui. Use when building pages, components, or styling any web UI.
This skill guides creation of distinctive, production-grade web interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices.
The user provides frontend requirements: a page, component, or interface to build. They may include context about the purpose, audience, or technical constraints.
Before coding, understand the context and commit to a BOLD aesthetic direction:
CRITICAL: Choose a clear conceptual direction and execute it with precision. Bold maximalism and refined minimalism both work - the key is intentionality, not intensity.
Then implement working React code that is:
Create depth and visual interest through layering and detail:
backdrop-blur for frosted glass effects on overlays, cards, and navigation.shadow-sm through shadow-2xl thoughtfully.Focus on:
<link> in index.html or CSS @import.Leverage the pre-installed shadcn/ui components as building blocks:
Layout & Structure:
Card - Container for content sectionsSeparator - Visual dividersScrollArea - Custom scrollbarsResizablePanelGroup - Split pane layoutsSidebar - Navigation sidebarsNavigation:
NavigationMenu - Top navigation barsTabs - Tabbed interfacesBreadcrumb - Location indicatorsPagination - Page navigationData Display:
Table - Data tables with sorting/filteringAccordion - Collapsible contentAvatar - User imagesBadge - Status indicatorsProgress - Progress barsSkeleton - Loading placeholdersFeedback:
Dialog - Modal dialogsSheet - Slide-out panelsToast (via Sonner) - NotificationsTooltip - Hover informationAlert - Inline messagesForms:
Input, Textarea, Select - Form inputsCheckbox, RadioGroup, Switch - TogglesSlider - Range inputsCalendar - Date selectionCommand - Command palette (cmdk)Responsive Design:
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
{/* Content adapts to screen size */}
</div>
Glass Effect:
<div className="bg-white/10 backdrop-blur-lg border border-white/20 rounded-xl">
{/* Frosted glass appearance */}
</div>
Hover Transitions:
<button className="transition-all duration-200 hover:scale-105 hover:shadow-lg">
Click me
</button>
Gradient Text:
<h1 className="bg-gradient-to-r from-purple-600 to-pink-600 bg-clip-text text-transparent">
Gradient Heading
</h1>
NEVER use generic AI-generated aesthetics like overused font families (Inter, Roboto, system fonts), cliched color schemes (particularly purple gradients on white backgrounds), predictable layouts and component patterns, and cookie-cutter design that lacks context-specific character.
Interpret creatively and make unexpected choices that feel genuinely designed for the context. No design should be the same. Vary between light and dark themes, different fonts, different aesthetics. NEVER converge on common choices (Space Grotesk, for example) across generations.
IMPORTANT: Match implementation complexity to the aesthetic vision. Maximalist designs need elaborate code with extensive animations and effects. Minimalist or refined designs need restraint, precision, and careful attention to spacing, typography, and subtle details. Elegance comes from executing the vision well.
Remember: Claude is capable of extraordinary creative work. Don't hold back, show what can truly be created when thinking outside the box and committing fully to a distinctive vision.