Skip to content

Commit

Permalink
docs: Make homepage installation instructions match docs (#2596)
Browse files Browse the repository at this point in the history
The /docs/installation pages contain this command:

```
npx panda init --postcss
```

But try-panda.tsx, rendered on the homepage, instructs:

```
npm run panda init -p
```

This change makes the homepage match the docs pages.
  • Loading branch information
noahlt authored May 14, 2024
1 parent 92ceaee commit 4e169b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/src/components/sections/try-panda.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const installSteps = [
},
{
title: 'Run the initialize command',
command: 'npm run panda init -p'
command: 'npx panda init --postcss'
},
{
title: 'Start using Panda in your project',
Expand Down

0 comments on commit 4e169b6

Please sign in to comment.