Getting Started
Components
Search for a command to run...
Note: Tween uses the same installation process as shadcn/ui.
Run the init command to create a new Next.js project or to setup an existing one:
You can now start adding components to your project.
Components are added to your components/ directory and can then be imported like this:
import { Component } from "@/components/ui/component"
export default function Home() {
return <Component />
}