๐ŸŽฏ Nexus teaches Next.js from foundations to professional systemsโ€ขโšก App Router, React 19, and Tailwind v4 in one learning pathโ€ข๐Ÿงฉ Inspect real components, layouts, and reusable patternsโ€ข๐Ÿ› ๏ธ Build production discipline, not just polished demosโ€ข๐Ÿ“š Tracks, references, and design studies in one placeโ€ข๐ŸŽฏ Nexus teaches Next.js from foundations to professional systemsโ€ขโšก App Router, React 19, and Tailwind v4 in one learning pathโ€ข๐Ÿงฉ Inspect real components, layouts, and reusable patternsโ€ข๐Ÿ› ๏ธ Build production discipline, not just polished demosโ€ข๐Ÿ“š Tracks, references, and design studies in one placeโ€ข๐ŸŽฏ Nexus teaches Next.js from foundations to professional systemsโ€ขโšก App Router, React 19, and Tailwind v4 in one learning pathโ€ข๐Ÿงฉ Inspect real components, layouts, and reusable patternsโ€ข๐Ÿ› ๏ธ Build production discipline, not just polished demosโ€ข๐Ÿ“š Tracks, references, and design studies in one placeโ€ข๐ŸŽฏ Nexus teaches Next.js from foundations to professional systemsโ€ขโšก App Router, React 19, and Tailwind v4 in one learning pathโ€ข๐Ÿงฉ Inspect real components, layouts, and reusable patternsโ€ข๐Ÿ› ๏ธ Build production discipline, not just polished demosโ€ข๐Ÿ“š Tracks, references, and design studies in one placeโ€ข
UI Components

Progress

Animated progress bar with label, value display, four color variants, and three size options

Quick Preview

Uploading...72%

Installation

// Copy the Progress component from
src/components/ui/Progress.tsx

Usage

import { Progress } from '@/components/ui/Progress'
// Basic
<Progress value={50} />
// With label and value display
<Progress
value={75}
label="Profile completion"
showValue
variant="success"
/>

Examples

Color Variants

Default (primary)80%
Success65%
Warning45%
Danger30%

Sizes

Small60%
Medium60%
Large60%

Skill Bars โ€” Real-world Usage

TypeScript90%
React85%
Node.js70%
Python55%

Animated (Loading State)

Processing...

Prompt Preview

Copy a prompt that recreates this UI

Paste this into your AI coding assistant to generate code that closely matches the reference, including color, size, shape, typography, spacing, and polish.

Copy-ready AI prompt

Starts from the current visual reference and project constraints.

Tweak only product-specific copy or data after the first generation pass.

Props

PropTypeDefaultDescription
value*number-Current progress value
maxnumber100Maximum value
variant"default" | "success" | "warning" | "danger""default"Color variant
size"sm" | "md" | "lg""md"Bar height
labelstring-Label text shown above the bar
showValueboolean-Show percentage value above the bar
animatedboolean-Adds pulse animation to the fill

Features

  • โœ“Four color variants: default (primary), success, warning, danger
  • โœ“Three size options (sm, md, lg)
  • โœ“Optional label and percentage display
  • โœ“Animated pulse option
  • โœ“Clamps value between 0 and max
  • โœ“role="progressbar" + aria attributes
  • โœ“Server Component