๐ŸŽฏ 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โ€ข
Common Components

Step List

Ordered list component for displaying sequential steps

Quick Preview

  1. 1

    Sign Up

    Create your free account in seconds

  2. 2

    Configure

    Set up your project settings and preferences

  3. 3

    Deploy

    Launch your application to the world

Installation

// Copy the StepList component from
src/components/common/StepList.tsx

Usage

import { StepList } from '@/components/common/StepList'
const steps = [
{
title: "Sign Up",
description: "Create your free account"
},
{
title: "Configure",
description: "Set up your project"
},
{
title: "Deploy",
description: "Launch your application"
}
]
export default function MyComponent() {
return <StepList steps={steps} />
}

Examples

Basic Steps

Simple 3-step process

  1. 1

    Sign Up

    Create your free account in seconds

  2. 2

    Configure

    Set up your project settings and preferences

  3. 3

    Deploy

    Launch your application to the world

Extended Steps

More detailed process with 5 steps

  1. 1

    Sign Up

    Create your free account in seconds

  2. 2

    Configure

    Set up your project settings and preferences

  3. 3

    Deploy

    Launch your application to the world

  4. 4

    Monitor

    Track your application performance

  5. 5

    Scale

    Grow your infrastructure as needed

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
steps*StepItem[]-Array of steps with title and description

StepItem Type

interface StepItem {
title: string
description: string
}

Features

  • โœ“Circular step numbers with teal background
  • โœ“Bold step titles
  • โœ“Description text
  • โœ“Clean vertical layout