Skip to content

Hosting

We recommend hosting the landing page on Vercel. Vercel is a cloud platform for static sites and serverless functions that provides a seamless deployment experience. Here's how you can host the landing page on Vercel:

Upload the Landing Page to GitHub

Upload the landing page to a GitHub repository. You can use the following command to initialize the landing page repository:

bash
git init
git add .
git commit -m "Initial commit"

Then create a new repository on GitHub and push the code to the repository:

bash
git remote add origin <repository-url>
git branch -M main
git push -u origin main

Create a Vercel Account

If you don't already have a Vercel account, you can create one here.

Deploy the Landing Page on Vercel

  1. Go to the Vercel dashboard.
  2. Click on the "Import Project" button.
  3. Select the GitHub repository where you uploaded the landing page.

Vercel will automatically detect the Next.js project and deploy it. You can configure the deployment settings and domain name in the Vercel dashboard.