### Install All LiftKit Components (npm script) Source: https://www.chainlift.io/liftkit/install Execute this npm script to install all available LiftKit components, along with their required CSS and types. ```bash npm run add all ``` -------------------------------- ### Install LiftKit Base CSS and Types (npm script) Source: https://www.chainlift.io/liftkit/install Run this npm script to install only the base CSS and types for LiftKit, without any specific UI components. ```bash npm run add base ``` -------------------------------- ### Install LiftKit CLI in Existing Project (npm) Source: https://www.chainlift.io/liftkit/install Install the LiftKit CLI as a development dependency in your existing Next.js project using npm. ```bash npm install @chainlift/liftkit --save-dev ``` -------------------------------- ### Clone LiftKit Template Project (Git) Source: https://www.chainlift.io/liftkit/install Use this command to clone the LiftKit template repository. This is the fastest way to start a new project with LiftKit pre-configured. ```bash git clone https://github.com/Chainlift/liftkit-template.git ``` -------------------------------- ### Install Specific LiftKit Component (npm script) Source: https://www.chainlift.io/liftkit/install Use this npm script to install a single, specified LiftKit component, including its CSS and types. Replace 'component-name-kebab-case' with the actual component name. ```bash npm run add component-name-kebab-case ``` -------------------------------- ### Initialize LiftKit in Existing Project (npx) Source: https://www.chainlift.io/liftkit/install Run this command to initialize LiftKit in your existing Next.js project. It will add necessary configuration files like components.json and tailwind.config.ts. ```bash npx liftkit init ``` -------------------------------- ### Import LiftKit Styles (CSS) Source: https://www.chainlift.io/liftkit/install Ensure you import LiftKit's main CSS file into your application's global CSS file to apply the necessary styles. ```css @import url('@/lib/css/index.css') ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.