@betterstart/cli 0.1.76 → 0.1.77

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@betterstart/cli",
3
- "version": "0.1.76",
3
+ "version": "0.1.77",
4
4
  "description": "Scaffold a full-featured CMS into any Next.js 16 application",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -65,14 +65,14 @@ export async function CmsSidebar(props: React.ComponentProps<typeof Sidebar>) {
65
65
  <div className="flex items-center gap-2 w-full relative h-full">
66
66
  <Link href="/cms" className="flex items-center gap-2 w-full">
67
67
  <Avatar className="size-8">
68
- <AvatarImage src={settings?.logo || "https://assets.betterstart.dev/assets/betterstart-logo.svg"} />
68
+ <AvatarImage src={settings?.dashboardLogo || "https://assets.betterstart.dev/assets/betterstart-logo.svg"} />
69
69
  <AvatarFallback className="text-sm font-semibold text-foreground">
70
- {settings?.siteName?.charAt(0) ?? cms.name?.charAt(0)}
70
+ {settings?.dashboardName?.charAt(0) ?? cms.name?.charAt(0)}
71
71
  </AvatarFallback>
72
72
  </Avatar>
73
73
  <div className="flex text-foreground items-center gap-1 w-full group-data-[collapsible=icon]:hidden">
74
74
  <span className="text-sm font-medium line-clamp-1">
75
- {settings?.siteName ?? cms.name}
75
+ {settings?.dashboardName ?? cms.name}
76
76
  </span>
77
77
  </div>
78
78
  </Link>
@@ -12,7 +12,7 @@ function Card({
12
12
  data-slot="card"
13
13
  data-size={size}
14
14
  className={cn(
15
- "group/card flex flex-col gap-6 overflow-hidden rounded-xl bg-card py-6 text-sm text-card-foreground has-data-[slot=card-footer]:pb-0 has-[>img:first-child]:pt-0 data-[size=sm]:gap-3 data-[size=sm]:py-3 data-[size=sm]:has-data-[slot=card-footer]:pb-0 *:[img:first-child]:rounded-t-xl *:[img:last-child]:rounded-b-xl material-md",
15
+ "group/card flex flex-col gap-6 overflow-hidden rounded-xl bg-card py-6 text-sm text-card-foreground has-data-[slot=card-footer]:pb-0 has-[>img:first-child]:pt-0 data-[size=sm]:gap-3 data-[size=sm]:py-3 data-[size=sm]:has-data-[slot=card-footer]:pb-0 *:[img:first-child]:rounded-t-xl *:[img:last-child]:rounded-b-xl material-medium",
16
16
  className
17
17
  )}
18
18
  {...props}