Get a template running locally in under five minutes.
After purchasing a template (or with a Pro subscription), go to the Templates page and click Download Template. You will get a .zip file.
unzip forge.zip -d my-project
cd my-project
npm installnpm run devOpen http://localhost:3000 and you are live.
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.jsonMost templates work with no env vars. If needed, copy the example file:
cp .env.example .env.local