
Security News
Insecure Agents Podcast: Certified Patches, Supply Chain Security, and AI Agents
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.
@landtrustinc/design-system
Advanced tools
Design system components for LandTrust applications.
npm install @landtrustinc/design-system react-loading-skeleton
⚠️ Important: You must import the following CSS files in your app's entry point (e.g., _app.js or _app.tsx for Next.js):
// pages/_app.tsx (Next.js) or main entry file
import '@landtrustinc/design-system/dist/variables.css';
import 'react-loading-skeleton/dist/skeleton.css';
Why?
react-loading-skeleton for loading states in some componentsIf you're using Next.js, make sure these imports are at the top of your pages/_app.tsx or pages/_app.js:
import 'react-loading-skeleton/dist/skeleton.css';
import '@landtrustinc/design-system/dist/variables.css';
// ... rest of your imports
import { Button, Box, Typography } from '@landtrustinc/design-system';
function App() {
return (
<Box>
<Typography variant="h1">Hello World</Typography>
<Button variant="primary">Click Me</Button>
</Box>
);
}
Following Figma styles try to use tokens from variables.css. Avoid using colors from the theme (these are legacy).
Keep the styles in separate file *.styles.ts
npm run dev # Start development server
npm run build # Build package
npm run storybook # Run Storybook
npm build
npm version patch/minor/major
npm publish
FAQs
Design system components for LandTrust applications
We found that @landtrustinc/design-system demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.

Security News
The planned feature introduces a review step before releases go live, following the Shai-Hulud attacks and a rocky migration off classic tokens that disrupted maintainer workflows.