Nexus-UI

UI systems lab

ComponentsTemplatesBlocksPricingBlog
Sign inGet premium
Nexus-UI

A premium marketplace for animated interfaces — components, templates, and blocks engineered for Next.js, Tailwind, and Framer Motion.

Product

  • Components
  • Templates
  • Blocks
  • Pricing

Developers

  • Installation
  • Utilities
  • Blog
  • Search

Account

  • Sign in
  • Dashboard
© 2026 Nexus-UI. Built for developers who ship.
Get All-Access
⌘K

Installation

Nexus-UI setupInstall Next.jsInstall Tailwind CSSAdd utilitiesCLIAdd shadcn/uiFramer Motion

Templates

Aurora SaaS LaunchNewForge AI StartupNewVector Dev PortfolioStudio Deck AgencyAurora Analytics DashboardOrbit Productivity SuiteSimplistic AI SaaSOrbit AI Developer Tool

Sections and Blocks

All blocks3Feature grids1Interactive backgrounds1FAQ sections1

Backgrounds & Effects

Background EffectsNew63D ComponentsNew4Shaders1Motion Effects22AI Components3

Card Components

Cards11Bento Grids3Dashboards1Loaders1

Text, Forms & Navigation

Motion Effects22Login Forms1Signup Forms2Contact Sections1Navbars2Footers1
All components75

Advanced search →
Setup & catalog

Docs

Install Tailwind CSS

Nexus-UI uses Tailwind v4 with the PostCSS plugin, CSS-first configuration, and shared design tokens. Follow these steps on a fresh Next.js app or compare with this repository’s postcss.config and globals.

Install packages

From your project root:

npm install tailwindcss @tailwindcss/postcss

PostCSS

Register the Tailwind v4 PostCSS plugin (see postcss.config.mjs in Nexus-UI).

export default {
  plugins: {
    "@tailwindcss/postcss": {},
  },
};

Global stylesheet

Import Tailwind once at the top of your global CSS file (for example src/app/globals.css):

@import "tailwindcss";

@theme inline {
  /* Map design tokens — mirror Nexus-UI’s semantic colors for consistency */
}

Import that stylesheet from your root layout.tsx. Layer component libraries (for example shadcn) after Tailwind per their docs.

Legacy Tailwind v3

Older projects may still use tailwind.config.js and @tailwind base/components/utilities. New work should prefer v4 for parity with Nexus-UI and simpler token pipelines.

← Install Next.jsAdd utilities →

← Components library