Platform Foundationsv0.2.0

Quickstart

Install the theme and components and get a themed app running in three steps.

This is the fastest path onto the foundation for a new or existing Next.js app. It matches the theme package README, which stays the source of truth for the install steps.

Both packages are public on npm. There is no registry configuration and no access token to set up.

Install

pnpm add @plainconceptsplatform/ui-theme @plainconceptsplatform/ui-components tailwindcss
npm install @plainconceptsplatform/ui-theme @plainconceptsplatform/ui-components tailwindcss
yarn add @plainconceptsplatform/ui-theme @plainconceptsplatform/ui-components tailwindcss
bun add @plainconceptsplatform/ui-theme @plainconceptsplatform/ui-components tailwindcss

Initialize

npx @plainconceptsplatform/ui-theme@latest init

This copies components.json, adds the theme import to your global stylesheet, and shows you how to wire the Outfit font in your root layout.

Add shadcn components

npx shadcn@latest add button card dialog

They inherit the theme with no extra work, and you do not need to edit the generated source: the theme neutralises the shadow-* utilities shadcn ships with, so upstream components already look like a Platform app.

Next steps

Full package details are in the theme README.