Quickstart

Get a template running locally in under five minutes.

Prerequisites

  • Node.js 18+ (latest LTS recommended)
  • npm, pnpm, or yarn

1. Download

After purchasing a template (or with a Pro subscription), go to the Templates page and click Download Template. You will get a .zip file.

2. Install

unzip forge.zip -d my-project
cd my-project
npm install

3. Run

npm run dev

Open http://localhost:3000 and you are live.

Project Structure

my-project/
├── src/
│   ├── app/              # Pages and layouts (App Router)
│   │   ├── layout.tsx    # Root layout with fonts and theme
│   │   ├── page.tsx      # Main landing page
│   │   └── globals.css   # Design tokens and Tailwind config
│   ├── components/       # React components
│   │   ├── landing/      # Landing page sections
│   │   ├── navbar/       # Navigation
│   │   └── ui/           # Reusable primitives
│   └── lib/              # Utility functions
├── public/               # Static assets
├── next.config.ts
├── package.json
└── tsconfig.json

Environment Variables

Most templates work with no env vars. If needed, copy the example file:

cp .env.example .env.local