File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,5 +11,18 @@ using CSS variables. Icons are provided via `@mdi/js` library.
1111To 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 )
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ store. So now in your `.svelte` component you would refer to it through global s
122122``` ts
123123import 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
You can’t perform that action at this time.
0 commit comments