Installation
Running the landing page locally.
Created: 1/11/2026
Installation
To run the Landing Page locally:
Prerequisites
- Node.js (v20+)
- pnpm (v10.4.1+)
Steps
-
Install dependencies from root:
# From the project root pnpm install -
Environment Setup: Navigate to the web app and copy the example env file:
cd apps/web cp .env.example .env.localFill in your
RESEND_API_KEYin the.env.localfile for email functionality. -
Run Development Server: From the root directory, run:
pnpm dev:webOr to run only the landing page:
pnpm dev --filter=web -
View Site: Open
http://localhost:3000in your browser.
