A collaborative platform where developers and designers can share, explore, and give feedback on reusable web components.

Fast Development

Build UIs in record time with pre-built, optimized components that work out of the box.

Easy Maintenance

Consistent patterns and well-documented code make maintenance a breeze for teams of any size.

Accessibility Built-in

Every component follows WCAG guidelines, ensuring your applications are usable by everyone.

Simple to Use

Just copy and paste the code of the component you want to use.

Button.html
import { Button } from 'atomox/components';

export default function MyComponent() {
  return (
    <div className="space-y-4">
      <h1>Welcome to My App</h1>
      <p>Built with Atomox components</p>
      <Button variant="primary">
        Get Started
      </Button>
    </div>
  );
}

Atoms

Molecules