Skip to content

TanStack Start

Install Shark UI in a TanStack Start project.

Use the Shark Preset

Create Project

Run the init command with the Shark preset and the TanStack Start template:

Add Components

You can add components with the CLI or copy them manually from the component docs:

  • CLI: Run npx shadcn@latest add @shark/<component> (e.g. button, dialog).
  • Manual: Copy component source from Manual tab in the component docs.

For example, add the Button component to your project:

You can also install every component at once:

Then import and use components like this:

src/routes/index.tsx

Use the CLI

Create Project

Run the init command to scaffold a new TanStack Start project and configure Shark UI:

For a monorepo project, use the --monorepo flag:

Add Components

You can add components with the CLI or copy them manually from the component docs:

  • CLI: Run npx shadcn@latest add @shark/<component> (e.g. button, dialog).
  • Manual: Copy component source from Manual tab in the component docs.

For example, add the Button component to your project:

If you created a monorepo, run the command from apps/web or specify the workspace from the repo root:

You can also install every component at once:

Then import and use components like this:

src/routes/index.tsx

If you created a monorepo, update apps/web/src/routes/index.tsx and import from your workspace UI package instead.

Existing Project

Create Project

If you need a new TanStack Start project, create one first. Otherwise, skip this step.

Choose TanStack Start, the React framework, and the recommended defaults so Tailwind CSS and the @/* import alias are configured for you.

Do not add the shadcn add-on when prompted. The shadcn CLI will configure Shark UI later in this guide.

The TanStack CLI already configures Tailwind CSS and the default @/* import alias for you. If you're adding Shark UI to an older or custom TanStack Start app, make sure both are configured before continuing.

Run the CLI

Run the shadcn init command with the Shark preset to set up your project.

Add Components

You can add components with the CLI or copy them manually from the component docs:

  • CLI: Run npx shadcn@latest add @shark/<component> (e.g. button, dialog).
  • Manual: Copy component source from Manual tab in the component docs.

For example, add the Button component to your project:

You can also install every component at once:

Then import and use components like this:

src/routes/index.tsx