Skip to content

Commit 036f01d

Browse files
author
Goran Mekić
committed
Instructions for Claude Designer
1 parent 92d4611 commit 036f01d

2 files changed

Lines changed: 14 additions & 1 deletion

File tree

docs/designer.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,18 @@ using CSS variables. Icons are provided via `@mdi/js` library.
1111
To see designer in action please check out
1212
[Designer app](/design)
1313

14+
## Claude Designer
15+
16+
If you generate your page UI with Claude Designer, use the following prompt to
17+
export the page:
18+
19+
```
20+
Export to single .html file that includes CSS and has zero JavaScript. Use only
21+
ChotCSS and break points for reponsive design should be:
22+
mobile: @media (max-width: 767px)
23+
tablet: @media (min-width: 768px) and (max-width: 1023px)
24+
desktop: @media (min-width: 1024px)
25+
```
26+
1427
## Source
1528
[Github](https://github.com/freenit-framework/designer)

docs/frontend/01store.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ store. So now in your `.svelte` component you would refer to it through global s
122122
```ts
123123
import store from '$lib/store'
124124

125-
console.log(store.blog.list.total)
125+
const total = store.blog.list.total
126126
```
127127

128128
## Built-in Stores

0 commit comments

Comments
 (0)