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

StatsSection

A 4-column metrics showcase with large primary-colored values, labels, and optional descriptions

Quick Preview

50+
Core learning blocks

Routing, rendering, UI, and workflow in one place

100+
Inspectable examples

Components and patterns you can study line by line

0 โ†’ Pro
Progression mindset

A path from fundamentals to professional systems

1 place
Unified reference

Tracks, components, articles, and design study together

With Heading

By the numbers

Real metrics from our growing community.

50+
Core learning blocks

Routing, rendering, UI, and workflow in one place

100+
Inspectable examples

Components and patterns you can study line by line

0 โ†’ Pro
Progression mindset

A path from fundamentals to professional systems

1 place
Unified reference

Tracks, components, articles, and design study together

Installation

// Add stat data to
src/lib/constants.ts โ†’ STATS
src/types/index.ts โ†’ StatItem
// Copy the component from
src/components/sections/StatsSection.tsx

Usage

import { StatsSection } from '@/components/sections/StatsSection'
// Default โ€” uses STATS from constants
export default function AboutPage() {
return <StatsSection />
}
// Custom stats
const stats = [
{ value: '10M+', label: 'API calls daily' },
{ value: '150+', label: 'Countries served', description: 'Global coverage' },
]
export default function AboutPage() {
return <StatsSection stats={stats} title="Platform at scale" />
}

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
statsStatItem[]-Array of stat items (defaults to STATS from constants)
titlestring-Optional section heading
subtitlestring-Optional section sub-heading
classNamestring-Additional CSS classes

Features

  • โœ“4-column responsive grid (2 on mobile)
  • โœ“Primary-colored value display
  • โœ“Optional title + subtitle header
  • โœ“Data-driven: edit STATS in constants.ts