Beautiful, accessible UI components for building modern web applications. Designed for CanxJS with dark mode support and full customization.
Get started by installing the UI components package.
bun add @canxjs/uiimport { Button, Card, Badge } from "@canxjs/ui";
export function Dashboard() {
return (
<Card>
<Card.Header>
<h2>Welcome to CanxJS</h2>
<Badge variant="success">Active</Badge>
</Card.Header>
<Card.Content>
<p>Build amazing applications with CanxJS.</p>
</Card.Content>
<Card.Footer>
<Button variant="primary">Get Started</Button>
<Button variant="outline">Learn More</Button>
</Card.Footer>
</Card>
);
}