mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-30 16:14:13 +00:00
253 lines
6.1 KiB
Plaintext
253 lines
6.1 KiB
Plaintext
---
|
|
title: Astro
|
|
description: Install and configure shadcn/ui for Astro.
|
|
---
|
|
|
|
Choose the setup that matches your starting point.
|
|
|
|
<div className="mt-6 grid gap-4 sm:grid-cols-3 sm:gap-6">
|
|
<LinkedCard
|
|
href="#scaffold-with-create"
|
|
className="items-start gap-1 p-6 text-sm md:p-6"
|
|
>
|
|
<div className="font-medium">Use shadcn/create</div>
|
|
<div className="leading-relaxed text-muted-foreground">
|
|
Build your preset and generate an Astro project command.
|
|
</div>
|
|
</LinkedCard>
|
|
<LinkedCard
|
|
href="#scaffold-with-cli"
|
|
className="items-start gap-1 p-6 text-sm md:p-6"
|
|
>
|
|
<div className="font-medium">Use the CLI</div>
|
|
<div className="leading-relaxed text-muted-foreground">
|
|
Scaffold a new Astro project directly from the terminal.
|
|
</div>
|
|
</LinkedCard>
|
|
<LinkedCard
|
|
href="#existing-astro-project"
|
|
className="items-start gap-1 p-6 text-sm md:p-6"
|
|
>
|
|
<div className="font-medium">Existing Project</div>
|
|
<div className="leading-relaxed text-muted-foreground">
|
|
Configure shadcn/ui manually in an existing Astro project.
|
|
</div>
|
|
</LinkedCard>
|
|
</div>
|
|
|
|
<div id="scaffold-with-create" className="scroll-mt-24" />
|
|
## Use shadcn/create
|
|
|
|
<Steps>
|
|
|
|
### Build Your Preset
|
|
|
|
Open [shadcn/create](/create?template=astro) and build your preset visually. Choose your style, colors, fonts, icons, and more.
|
|
|
|
<Button asChild size="sm">
|
|
<Link
|
|
href="/create?template=astro"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="mt-6 no-underline!"
|
|
>
|
|
Open shadcn/create
|
|
</Link>
|
|
</Button>
|
|
|
|
### Create Project
|
|
|
|
Click `Create Project`, choose your package manager, and copy the generated command.
|
|
|
|
The generated command will look similar to this:
|
|
|
|
```bash
|
|
npx shadcn@latest init --preset [CODE] --template astro
|
|
```
|
|
|
|
The exact command will include your selected options such as `--base`, `--monorepo`, or `--rtl`.
|
|
|
|
### Add Components
|
|
|
|
Add the `Card` component to your project:
|
|
|
|
```bash
|
|
npx shadcn@latest add card
|
|
```
|
|
|
|
If you created a monorepo, run the command from `apps/web` or specify the workspace from the repo root:
|
|
|
|
```bash
|
|
npx shadcn@latest add card -c apps/web
|
|
```
|
|
|
|
The command above will add the `Card` component to your project. You can then import it like this:
|
|
|
|
```astro title="src/pages/index.astro" showLineNumbers
|
|
---
|
|
import Layout from "@/layouts/main.astro"
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/components/ui/card"
|
|
---
|
|
|
|
<Layout>
|
|
<Card className="max-w-sm">
|
|
<CardHeader>
|
|
<CardTitle>Project Overview</CardTitle>
|
|
<CardDescription>
|
|
Track progress and recent activity for your Astro app.
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
Your design system is ready. Start building your next component.
|
|
</CardContent>
|
|
</Card>
|
|
</Layout>
|
|
```
|
|
|
|
If you created a monorepo, update `apps/web/src/pages/index.astro` and import from `@workspace/ui/components/card` instead. The monorepo layout at `apps/web/src/layouts/main.astro` already imports `@workspace/ui/globals.css` for you.
|
|
|
|
</Steps>
|
|
|
|
<div id="scaffold-with-cli" className="scroll-mt-24" />
|
|
## Use the CLI
|
|
|
|
<Steps>
|
|
|
|
### Create Project
|
|
|
|
Run the `init` command to scaffold a new Astro project. Follow the prompts to configure your project: base, preset, monorepo, and more.
|
|
|
|
```bash
|
|
npx shadcn@latest init -t astro
|
|
```
|
|
|
|
**For a monorepo project, use `--monorepo` flag:**
|
|
|
|
```bash
|
|
npx shadcn@latest init -t astro --monorepo
|
|
```
|
|
|
|
### Add Components
|
|
|
|
Add the `Card` component to your project:
|
|
|
|
```bash
|
|
npx shadcn@latest add card
|
|
```
|
|
|
|
If you created a monorepo, run the command from `apps/web` or specify the workspace from the repo root:
|
|
|
|
```bash
|
|
npx shadcn@latest add card -c apps/web
|
|
```
|
|
|
|
The command above will add the `Card` component to your project. You can then import it like this:
|
|
|
|
```astro title="src/pages/index.astro" showLineNumbers
|
|
---
|
|
import Layout from "@/layouts/main.astro"
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/components/ui/card"
|
|
---
|
|
|
|
<Layout>
|
|
<Card className="max-w-sm">
|
|
<CardHeader>
|
|
<CardTitle>Project Overview</CardTitle>
|
|
<CardDescription>
|
|
Track progress and recent activity for your Astro app.
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
Your design system is ready. Start building your next component.
|
|
</CardContent>
|
|
</Card>
|
|
</Layout>
|
|
```
|
|
|
|
If you created a monorepo, update `apps/web/src/pages/index.astro` and import from `@workspace/ui/components/card` instead. The monorepo layout at `apps/web/src/layouts/main.astro` already imports `@workspace/ui/globals.css` for you.
|
|
|
|
</Steps>
|
|
|
|
<div id="existing-astro-project" className="scroll-mt-24" />
|
|
## Existing Project
|
|
|
|
<Steps>
|
|
|
|
### Create Project
|
|
|
|
If you need a new Astro project, create one first. Otherwise, skip this step.
|
|
|
|
```bash
|
|
npm create astro@latest astro-app -- --template with-tailwindcss --install --add react --git
|
|
```
|
|
|
|
This command sets up Tailwind CSS and the React integration for you. If you're adding shadcn/ui to an older or custom Astro app, make sure both are configured before continuing.
|
|
|
|
The Tailwind starter loads your global stylesheet through `src/layouts/main.astro`. Keep that layout in place, or make sure your page imports `@/styles/global.css`.
|
|
|
|
### Edit tsconfig.json file
|
|
|
|
If your project already has the `@/*` alias configured, skip this step.
|
|
|
|
Add the following code to the `tsconfig.json` file to resolve paths:
|
|
|
|
```ts title="tsconfig.json" {4-9} showLineNumbers
|
|
{
|
|
"compilerOptions": {
|
|
// ...
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
}
|
|
// ...
|
|
}
|
|
}
|
|
```
|
|
|
|
### Run the CLI
|
|
|
|
Run the `shadcn` init command to set up your project:
|
|
|
|
```bash
|
|
npx shadcn@latest init
|
|
```
|
|
|
|
### Add Components
|
|
|
|
You can now start adding components to your project.
|
|
|
|
```bash
|
|
npx shadcn@latest add button
|
|
```
|
|
|
|
The command above will add the `Button` component to your project. You can then import it like this:
|
|
|
|
```astro title="src/pages/index.astro" showLineNumbers
|
|
---
|
|
import Layout from "@/layouts/main.astro"
|
|
import { Button } from "@/components/ui/button"
|
|
---
|
|
|
|
<Layout>
|
|
<div class="grid h-screen place-items-center content-center">
|
|
<Button>Button</Button>
|
|
</div>
|
|
</Layout>
|
|
```
|
|
|
|
</Steps>
|