Skip to content

Commit 80cd41a

Browse files
committed
Merge branch 'main' into update_cursorrules
# Conflicts: # README.md
2 parents 5479d5d + 50f8b85 commit 80cd41a

File tree

5 files changed

+21
-6
lines changed

5 files changed

+21
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# [1.0.0-beta.13](https://github.com/cloudinary-devs/create-cloudinary-react/compare/v1.0.0-beta.12...v1.0.0-beta.13) (2026-02-03)
2+
3+
4+
### Features
5+
6+
* simplify AI prompts section with clear copy-paste instructions ([2b60415](https://github.com/cloudinary-devs/create-cloudinary-react/commit/2b60415c1d3e23aabbe95b2c5366078857a5b37c))
7+
18
# [1.0.0-beta.12](https://github.com/cloudinary-devs/create-cloudinary-react/compare/v1.0.0-beta.11...v1.0.0-beta.12) (2026-02-02)
29

310

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-cloudinary-react",
3-
"version": "1.0.0-beta.12",
3+
"version": "1.0.0-beta.13",
44
"description": "Scaffold a Cloudinary React + Vite + TypeScript project with interactive setup",
55
"type": "module",
66
"bin": {

templates/README.md.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Your `.env` file has been pre-configured with:
2626

2727
**Note**: Transformations work without an upload preset (using sample images). Uploads require an unsigned upload preset.
2828

29-
To create an upload preset:
29+
To create an unsigned upload preset:
3030
1. Go to https://console.cloudinary.com/app/settings/upload/presets
3131
2. Click "Add upload preset"
3232
3. Set it to "Unsigned" mode
@@ -37,7 +37,7 @@ To create an upload preset:
3737

3838
This project includes AI coding rules for your selected AI assistant(s). The rules help AI assistants understand Cloudinary React SDK patterns, common errors, and best practices.
3939

40-
**Try the AI Prompts**: Check out the "🤖 Try Asking Your AI Assistant" section in the app for ready-to-use Cloudinary prompts to get started!
40+
**Try the AI Prompts**: Check out the "🤖 Try Asking Your AI Assistant" section in the app for ready-to-use Cloudinary prompts! Copy and paste them into your AI assistant to get started.
4141

4242
## Learn More
4343

templates/src/App.css.template

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,13 @@ h2 {
6161

6262
.prompts-intro {
6363
margin: 0.5rem 0 1rem 0;
64-
color: rgba(255, 255, 255, 0.8);
64+
color: rgba(255, 255, 255, 0.9);
6565
text-align: center;
66+
font-size: 1rem;
67+
}
68+
69+
.prompts-intro strong {
70+
color: rgba(99, 102, 241, 1);
6671
}
6772

6873
.prompts-list {
@@ -84,7 +89,8 @@ h2 {
8489
color: rgba(255, 255, 255, 0.9);
8590
font-size: 0.9rem;
8691
transition: all 0.2s;
87-
cursor: pointer;
92+
user-select: text;
93+
cursor: text;
8894
}
8995

9096
.prompts-list li:hover {

templates/src/App.tsx.template

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ function App() {
6161

6262
<div className="ai-prompts-section">
6363
<h2>🤖 Try Asking Your AI Assistant</h2>
64-
<p className="prompts-intro">Ping your agent with one of these to get started:</p>
64+
<p className="prompts-intro">
65+
<strong>Copy and paste</strong> one of these prompts into your AI assistant:
66+
</p>
6567
<ul className="prompts-list">
6668
<li>Create an image gallery with lazy loading and responsive</li>
6769
<li>Create a video player that plays a Cloudinary video</li>

0 commit comments

Comments
 (0)