diff --git a/apps/preskok/components/command-menu.tsx b/apps/preskok/components/command-menu.tsx
index 33e379e73..7611d7aae 100644
--- a/apps/preskok/components/command-menu.tsx
+++ b/apps/preskok/components/command-menu.tsx
@@ -213,18 +213,18 @@ function getPreskokAddCommand(
componentName: string
) {
if (packageManager === "npm") {
- return `npx preskok-ui@latest add ${componentName}`
+ return `npx shadcn@latest add @preskok/${componentName}`
}
if (packageManager === "yarn") {
- return `yarn preskok-ui@latest add ${componentName}`
+ return `yarn dlx shadcn@latest add @preskok/${componentName}`
}
if (packageManager === "bun") {
- return `bunx --bun preskok-ui@latest add ${componentName}`
+ return `bunx --bun shadcn@latest add @preskok/${componentName}`
}
- return `pnpm dlx preskok-ui@latest add ${componentName}`
+ return `pnpm dlx shadcn@latest add @preskok/${componentName}`
}
function CommandMenuKbd({ className, ...props }: React.ComponentProps<"kbd">) {
diff --git a/apps/preskok/components/docs-sidebar-footer.tsx b/apps/preskok/components/docs-sidebar-footer.tsx
index f448f1922..ce7b1ca69 100644
--- a/apps/preskok/components/docs-sidebar-footer.tsx
+++ b/apps/preskok/components/docs-sidebar-footer.tsx
@@ -32,10 +32,7 @@ export function DocsSidebarFooter() {
- {siteConfig.package.name}
-
-
- v{siteConfig.package.version}
+ {siteConfig.cli.name}