Coming Soon

Getting started with coming soon template.


This guide will walk you through the steps of installing, running locally, and deploying the New UI coming soon template.

Structure

Once you’ve downloaded the template, you’ll find these folders and files inside:

.
├── public
│   ├── android-chrome-192x192.png
│   ├── android-chrome-512x512.png
│   ├── apple-touch-icon.png
│   ├── favicon-16x16.png
│   ├── favicon-32x32.png
│   ├── favicon.ico
│   ├── favicon.svg
│   ├── logo.svg
│   ├── signature.svg
│   └── site.webmanifest
├── .gitignore
├── form.js
├── index.html
├── package-lock.json
├── package.json
├── README.md
└── style.css

Stack

  • Vanilla HTML, CSS, and Vite.

Prerequisites

  • Node.js - v20.9.0 or higher
  • Text editor
  • Terminal

Installation

To install navigate into template folder and install the dependencies.

cd coming-soon-XXX
npm install

Running Locally

Start the development server.

npm run dev

If all goes well, you should be able to view the template running locally at http://localhost:5173/.

Success! You are now ready to customize the page.

If you aren’t able to run template in the browser, go back to the terminal where you ran the dev command and look to see if an error occurred, or if template is being served at a different URL than the one linked to above.

Building the App

Run build command to build the page.

npm run build

By default, the build output will be placed at dist/. You may deploy this dist folder to any of your preferred platforms.

Deploying

Deploying your coming soon is quick and easy. You can choose from several hosting providers and deploy using either their website dashboard or command-line interface (CLI).

A fast way to deploy your coming soon template is to connect your online Git repository (like GitHub, GitLab, or Bitbucket) to a host provider. This lets you take advantage of continuous deployment using Git.

These host platforms automatically detect changes to your template’s code in your Git repository. They then build your site and deploy it to the web, using either a custom URL or your personal domain.

For detailed instructions on deploying your coming soon template on different platforms, please visit the deploying a static site.