🎯 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β€’
Navigation

CommandBar

Keyboard-first command palette β€” search, navigate, and trigger actions with ↑↓ and Enter.

Installation

// Copy from
src/components/navigation/CommandBar.tsx
// Dependencies
npm install lucide-react

Usage

import CommandBar from '@/components/navigation/CommandBar'
const items = [
{ icon: '🏠', label: 'Home', href: '/', category: 'Pages' },
{ icon: '⚑', label: 'Animations', href: '/components/animations', category: 'Components' },
{ icon: 'β˜€οΈ', label: 'Toggle Theme', category: 'Actions', shortcut: ['⌘', 'T'] },
]
export default function App() {
return <CommandBar items={items} placeholder="Search commands…" />
}

Examples

Components only

Filtered to a single category

↑↓ Navigate↡ SelectEsc Close

Keyboard shortcuts

Items with shortcut badges visible at a glance

Actions

β˜€οΈ
Toggle Theme
⌘T
πŸš€
Open Tracks
⌘P
↑↓ Navigate↡ SelectEsc Close

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
items*CommandBarItem[]-Array of {icon?, label, href?, category?, shortcut?, onSelect?}
placeholderstring'Search commands…'Input placeholder