The SOVIO Landing Page is a responsive web application designed to showcase SOVIO’s offerings, product features, and brand identity. This repository contains the codebase for the Sovio landing page.
Node.js and pnpm
Run the following command on your local environment:
git clone https://github.com/ayanworks/sovio-landing-page.git
cd sovio-landing-page
pnpm install
Then, you can run locally in development mode with live reload:
pnpm run devOpen http://localhost:3000 with your favorite browser to see your project. For your information, Next JS need to take some time to compile the project for your first time.
You can see the results locally in production mode with:
$ pnpm run build
$ pnpm run start
The generated HTML and CSS files are minified (built-in feature from Next js). It will also removed unused CSS from Tailwind CSS.
You can create an optimized production build with:
pnpm run build-prod