NA-AI LandingUpdated May 18, 2026

Setup

Install, run, and build NA-AI Landing locally after purchase.

NA-AI LandingSetup

Run NA-AI Landing locallyLink to section

After purchase, you receive a ZIP package containing the full source code and documentation.

The template is designed to work:

  • as a standalone project
  • outside the private PyColors monorepo
  • after ZIP download
  • on Vercel
  • in production environments

Go from ZIP download to running app quickly.

NA-AI Landing is designed to be runnable, inspectable, and customizable without requiring access to the private PyColors monorepo.
Customization guide

One-time payment · Instant access after purchase

Core idea

The template should be runnable, inspectable, and customizable without requiring access to the private PyColors monorepo.

RequirementsLink to section

ToolRecommended
Node.js20+
Package managerpnpm
FrameworkNext.js 16+
DeploymentVercel

Quick startLink to section

Unzip the packageLink to section

terminal
unzip na-ai-landing.zip
cd na-ai-landing

Install dependenciesLink to section

terminal
pnpm install

Run the development serverLink to section

terminal
pnpm dev

Open:

browser
http://localhost:3000

Build for productionLink to section

terminal
pnpm build

Start the production serverLink to section

terminal
pnpm start

Included setup foundationsLink to section

Standalone structure

The template runs independently after ZIP extraction without requiring the private PyColors monorepo.

Production-ready frontend stack

Next.js 16+, TypeScript, Tailwind CSS v4, PyColors UI, and PyColors Tokens configured together.

Frontend-only setup

No authentication, Stripe, database, or backend configuration is required to run the base template.

Deployment-ready baseline

Optimized for Vercel deployment and production-oriented frontend workflows.

ScriptsLink to section

CommandPurpose
pnpm installInstall project dependencies
pnpm devRun the local development server
pnpm buildBuild for production
pnpm startStart the production server

Environment variablesLink to section

NA-AI Landing is frontend-only by design.

It does not require environment variables for:

  • authentication
  • database
  • Stripe
  • email
  • CMS

You can add your own variables later if you connect:

  • APIs
  • forms
  • analytics
  • backend services

Frontend-only

No backend configuration is required to run the base template.

Verify PyColors packagesLink to section

NA-AI Landing uses the public PyColors packages:

packages
@pycolors/ui
@pycolors/tokens

The global stylesheet imports the shared token package:

globals.css
@import "@pycolors/tokens/tokens.css";
@import "tailwindcss";

Tailwind CSS v4 also scans the installed UI package:

globals.css
@source "../../node_modules/@pycolors/ui";

Setup checklistLink to section

Confirm working setup

  • dependencies install successfully
  • local server starts
  • homepage renders correctly
  • dark and light mode work properly
  • production build passes

Avoid early changes

  • deleting data files before reading them
  • changing token imports too early
  • rewriting layouts before updating copy
  • adding backend logic inside section components
  • removing SEO assets before replacing them

A high-leverage setup path usually looks like this:

  1. install dependencies
  2. run the template locally
  3. validate production build
  4. update branding and copy
  5. customize data files
  6. connect APIs only if needed
  7. deploy publicly

This reduces unnecessary complexity early in the project lifecycle.

Architecture rule

Landing page sections should stay presentational. Put API wiring, form handling, and service integration in dedicated modules.

Common issuesLink to section

Next stepsLink to section