diff --git a/sites/docs/src/content/components/sonner.md b/sites/docs/src/content/components/sonner.md index 2fb4207261..b9adfded0e 100644 --- a/sites/docs/src/content/components/sonner.md +++ b/sites/docs/src/content/components/sonner.md @@ -27,7 +27,7 @@ The Sonner component is provided by [svelte-sonner](https://svelte-sonner.vercel - Setup theme support + Set up theme support By default, Sonner will use the user's system preferences to determine whether to show the light or dark theme. To get around this, you can either pass in a custom `theme` prop to the component, or simply use [mode-watcher](https://github.com/svecosystem/mode-watcher) which you can hardcode to `dark` or `light` mode should you wish. diff --git a/sites/docs/src/content/installation/astro.md b/sites/docs/src/content/installation/astro.md index fbfd6697c4..fe2064d77f 100644 --- a/sites/docs/src/content/installation/astro.md +++ b/sites/docs/src/content/installation/astro.md @@ -1,6 +1,6 @@ --- title: Astro -description: How to setup shadcn-svelte in an Astro project. +description: How to set up shadcn-svelte in an Astro project. --- -## Setup your project +## Set up your project @@ -61,7 +61,7 @@ Answer `Yes` to all the question prompted by the CLI when installing TailwindCSS -### Setup path aliases +### Set up path aliases Add the following code to the `tsconfig.json` file to resolve paths: @@ -107,7 +107,7 @@ import "$lib/styles/app.css"; ### Run the CLI -Run the `shadcn-svelte` init command to setup your project: +Run the `shadcn-svelte` init command to set up your project: diff --git a/sites/docs/src/content/installation/manual.md b/sites/docs/src/content/installation/manual.md index a519672f00..c96217917c 100644 --- a/sites/docs/src/content/installation/manual.md +++ b/sites/docs/src/content/installation/manual.md @@ -1,13 +1,13 @@ --- title: Manual Installation -description: How to setup shadcn-svelte manually. +description: How to set up shadcn-svelte manually. --- -## Setup your project +## Set up your project diff --git a/sites/docs/src/content/installation/sveltekit.md b/sites/docs/src/content/installation/sveltekit.md index dd3c321200..2f373b06fa 100644 --- a/sites/docs/src/content/installation/sveltekit.md +++ b/sites/docs/src/content/installation/sveltekit.md @@ -1,6 +1,6 @@ --- title: SvelteKit -description: How to setup shadcn-svelte in a SvelteKit project. +description: How to set up shadcn-svelte in a SvelteKit project. --- -## Setup your project +## Set up your project @@ -24,7 +24,7 @@ Use the Svelte CLI to add Tailwind CSS to your project. -### Setup path aliases +### Set up path aliases If you are not using the default alias `$lib`, you'll need to update your `svelte.config.js` file to include those aliases. diff --git a/sites/docs/src/content/installation/vite.md b/sites/docs/src/content/installation/vite.md index 74221772d7..b22caf1fca 100644 --- a/sites/docs/src/content/installation/vite.md +++ b/sites/docs/src/content/installation/vite.md @@ -1,6 +1,6 @@ --- title: Vite -description: How to setup shadcn-svelte in a Vite project. +description: How to set up shadcn-svelte in a Vite project. --- -## Setup your project +## Set up your project diff --git a/sites/docs/src/content/migration/tailwind-v4.md b/sites/docs/src/content/migration/tailwind-v4.md index 9a70d83f80..0dd22fa6b2 100644 --- a/sites/docs/src/content/migration/tailwind-v4.md +++ b/sites/docs/src/content/migration/tailwind-v4.md @@ -232,7 +232,7 @@ We've deprecated `tailwindcss-animate` in favor of `tw-animate-css`, which has s #### CSS Variables and Theme Config -We'll move the CSS variables to the `:root` and `.dark` selectors, wrap the colors values in `hsl()`, and setup an `@theme inline` directive to replace our Tailwind v3 config. +We'll move the CSS variables to the `:root` and `.dark` selectors, wrap the colors values in `hsl()`, and set up an `@theme inline` directive to replace our Tailwind v3 config. Once complete, your `app.css` file should look something like this (the color values will differ depending on your theme): diff --git a/sites/docs/src/content/registry/getting-started.md b/sites/docs/src/content/registry/getting-started.md index 40f762b38a..a12a6b981e 100644 --- a/sites/docs/src/content/registry/getting-started.md +++ b/sites/docs/src/content/registry/getting-started.md @@ -1,6 +1,6 @@ --- title: Getting Started -description: Learn how to get setup and run your own component registry. +description: Learn how to get set up and run your own component registry. ---