Something new is coming.Join the waitlist

Usage

PreviousNext

Once installed, tent ui components live in your codebase as regular React files. Customize props, styles, and animations freely — no library lock-in.

Once an tent ui component is installed, you can import it and use it in your application like any other React component. The components are added as part of your codebase (not hidden in a library), so you can edit the components to suit your specific needs.


Example

After installing tent ui components, you can use them in your application like any other React component. For example:

app/page.tsx
import { Hello } from "@/components/ui/hello";
 
export default function Page() {
  return (
    <div className="flex items-center justify-center p-8">
      <Hello />
    </div>
  );
}