๐ŸŽฏ 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

PricingSection

A three-column learning-track comparison with feature checklists, a highlighted recommended path, and CTA buttons

Quick Preview

Choose your learning track

Start with fundamentals, move into production patterns, and grow into system-level frontend thinking.

Foundation

Start with the mental models, file conventions, and workflow you actually need.

Beginner
  • Routing and layout fundamentals
  • Server vs Client Components
  • Tailwind v4 basics
  • Readable component examples
  • Architecture tradeoffs
  • Team-scale workflow guidance
Start with foundation
Recommended next step

Production

Turn working demos into maintainable, professional frontend systems.

Intermediate
  • Production-ready component patterns
  • Forms, actions, and validation
  • Design tokens and UI systems
  • Testing and code-quality habits
  • Architecture reasoning
  • Team-scale systems thinking
Study production track

Professional Systems

Think in architecture, scale, design systems, and team-grade delivery.

Advanced
  • Architecture and project structure
  • Scalable design system thinking
  • Professional frontend tradeoffs
  • Team workflows and review standards
  • Implementation guidance
  • Leadership-level systems context
See advanced track

Installation

# lucide-react is required
npm install lucide-react
// Add plan data to
src/lib/constants.ts โ†’ PRICING_PLANS
src/types/index.ts โ†’ PricingPlan, PricingFeature
// Copy the component from
src/components/sections/PricingSection.tsx

Usage

import { PricingSection } from '@/components/sections/PricingSection'
// Default โ€” uses PRICING_PLANS from constants
export default function PricingPage() {
return <PricingSection />
}
// Custom plans
const myPlans = [
{
id: 'basic',
name: 'Basic',
price: '$9',
period: '/ month',
description: 'For individuals.',
features: [
{ text: '10 projects', included: true },
{ text: 'Team collaboration', included: false },
],
cta: { label: 'Get started', href: '/signup' },
},
]
export default function PricingPage() {
return <PricingSection plans={myPlans} title="Our plans" />
}

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
plansPricingPlan[]-Array of learning tracks (defaults to PRICING_PLANS from constants)
titlestring"Choose your learning track"Section heading
subtitlestring-Sub-heading copy below the title
classNamestring-Additional CSS classes for the section wrapper

Features

  • โœ“3-column responsive grid (stacks on mobile)
  • โœ“Highlighted recommended path with ring + shadow
  • โœ“Feature checklist with Check / X icons
  • โœ“Configurable CTA per plan
  • โœ“Data-driven: edit PRICING_PLANS in constants.ts