OptimAI
Next.js

Get Started

Install dependencies, run the dev server, and build your Next.js project locally.

Welcome to Optim AI Next.js. This guide helps you run your Next.js project locally and understand its basic development workflow.

What is included

The Next.js package is a Next.js 16 marketing template for AI products. It includes:

  • marketing pages such as home, about, integration, testimonial, contact, login, and signup
  • markdown-driven blog, services ,use-case and many more sections
  • shared SEO metadata helpers
  • GSAP and Lenis-powered motion
  • Tailwind CSS 4 styling with TypeScript and React 19

Prerequisites

Before you start, make sure you have:

  • Node.js 20.0.0 or later
  • Git
  • One package manager: bun (recommended), npm, yarn, or pnpm

Setup

Open the project folder

After extracting your package, open your Next.js project folder in your editor.

Install dependencies

Run one of these commands:

Terminal
bun install
# or
npm install
# or
yarn install
# or
pnpm install

Start the development server

Terminal
bun run dev
# or
npm run dev
# or
yarn dev
# or
pnpm dev

Open http://localhost:3000.

Build for production

Terminal
bun run build
# or
npm run build
# or
yarn build
# or
pnpm build

Start the production server

Terminal
bun run start
# or
npm run start
# or
yarn start
# or
pnpm start

Available scripts

ScriptWhat it does
devStarts the Next.js development server
buildCreates the production build
startRuns the production server
lintRuns ESLint
You can use bun (recommended), npm, yarn, or pnpm. For best results, use only one package manager per project.

Verify your setup

After setup, confirm:

  1. http://localhost:3000 loads correctly
  2. editing a component triggers hot reload
  3. bun run build, npm run build, yarn build, or pnpm build succeeds without errors

Next steps

Copyright © 2026