Installation

How to install dependencies and structure your app.

Last updated on

Edit on GitHub

Note: We use installation process as shadcn/ui.

Initialize shadcn/ui

Run the init command to create a new project with shadcn/ui or setup an existing one.

npx shadcn@latest init"

Add Components

Run the add command to add a component to your project.

npx shadcn@latest add "https://jolyui.dev/r/vercel-tabs"

Import Components

Import the component to your project.

import { Button } from '@/components/ui/button';

export default function Home() {
  return (
    <div>
      <Button />
    </div>
  );
}

How is this guide?

On this page