1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
|
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="page-mode" content="{{ page.mode | default: 'designer' }}">
- <title>prompts.chat/embed — awesome AI prompts</title>
- <!-- Tailwind CSS -->
- <script src="https://cdn.tailwindcss.com"></script>
- <script>
- tailwind.config = {
- theme: {
- extend: {
- colors: {
- 'dynamic-background': 'rgb(var(--background) / <alpha-value>)',
- 'dynamic-foreground': 'rgb(var(--foreground) / <alpha-value>)',
- 'dynamic-muted': 'rgb(var(--muted) / <alpha-value>)',
- 'dynamic-muted-foreground': 'rgb(var(--muted-foreground) / <alpha-value>)',
- 'dynamic-primary': 'rgb(var(--primary) / <alpha-value>)',
- 'dynamic-accent': 'rgb(var(--accent) / <alpha-value>)',
- 'dynamic-border': 'rgb(var(--border) / <alpha-value>)',
- }
- }
- }
- }
- </script>
- <link rel="stylesheet" href="{{ '/embed-style.css' | relative_url }}">
- <link rel="icon" type="image/x-icon" href="{{ '/favicon.ico' | relative_url }}">
- <meta name="description" content="Design and customize embeddable AI prompts">
- <style>
- .checkerboard-bg {
- background-image:
- linear-gradient(45deg, rgba(0,0,0,0.06) 25%, transparent 25%),
- linear-gradient(-45deg, rgba(0,0,0,0.06) 25%, transparent 25%),
- linear-gradient(45deg, transparent 75%, rgba(0,0,0,0.06) 75%),
- linear-gradient(-45deg, transparent 75%, rgba(0,0,0,0.06) 75%);
- background-size: 20px 20px;
- background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
- }
-
- .dark .checkerboard-bg {
- background-color: #1e1e1e;
- background-image:
- linear-gradient(45deg, #353535 25%, transparent 25%),
- linear-gradient(-45deg, #353535 25%, transparent 25%),
- linear-gradient(45deg, transparent 75%, #353535 75%),
- linear-gradient(-45deg, transparent 75%, #353535 75%);
- background-size: 16px 16px;
- background-position: 0 0, 0 8px, 8px -8px, -8px 0px;
- }
- </style>
- </head>
- <body class="bg-dynamic-background text-dynamic-foreground overflow-hidden checkerboard-bg">
- <!-- Site Header -->
- <header class="site-header">
- <div class="header-left">
- <h1 class="site-title">prompts.chat/embed</h1>
- <p class="site-slogan hidden sm:block">Design and share beautiful AI prompts, for your website or blog.</p>
- <p class="site-slogan sm:hidden">Design and share AI prompts</p>
- </div>
- <div class="header-right">
- <a href="https://blog.fka.dev/blog/2025-06-18-building-a-react-hook-with-ai-a-step-by-step-guide-using-vibe-an-example-post-that-uses-prompts-chat-embed/"
- target="_blank"
- rel="noopener noreferrer"
- class="flex items-center text-xs text-dynamic-muted-foreground hover:text-dynamic-foreground transition-colors mr-3 touch-target hidden sm:inline-flex"
- title="View example blog post using prompts.chat embed">
- View example blog post
- </a>
- <button class="dark-mode-toggle touch-target" onclick="toggleDarkMode()" title="Toggle dark mode">
- <svg class="mode-icon sun-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg>
- <svg class="mode-icon moon-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="display: none;"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg>
- </button>
- </div>
- </header>
-
- <!-- Designer Mode -->
- <div id="designer-mode" class="designer-content flex flex-col lg:flex-row min-h-0">
- <!-- Left Panel - Customization -->
- <div class="designer-panel w-full lg:w-80 flex flex-col h-auto lg:h-full overflow-hidden order-2 lg:order-1 flex-shrink-0">
- <div class="flex-1 overflow-y-auto custom-scrollbar">
- <div class="p-3 lg:p-4 space-y-3">
-
- <!-- CONTENT SECTION -->
- <div class="space-y-2">
- <h3 class="text-xs font-semibold text-dynamic-foreground uppercase tracking-wider border-b border-dynamic-border pb-1">Prompt</h3>
-
- <!-- Example Selector -->
- <div class="space-y-1">
- <label class="text-xs font-medium text-dynamic-muted-foreground">Load Example</label>
- <select id="example-select" class="w-full p-2 bg-dynamic-muted border border-dynamic-border rounded text-xs focus-ring touch-target">
- <option value="">Choose an example...</option>
- <option value="vibe-coding">Vibe coding (no diff)</option>
- <option value="vibe-coding-diff">Vibe coding with diff</option>
- <option value="chatgpt">ChatGPT example</option>
- <option value="claude">Claude example</option>
- <option value="image-analysis">Image analysis</option>
- <option value="api-design">API design</option>
- </select>
- </div>
-
- <!-- Context -->
- <div class="space-y-1">
- <label class="text-xs font-medium text-dynamic-muted-foreground">Context</label>
- <input type="text" id="designer-context"
- class="w-full p-2 bg-dynamic-background border border-dynamic-border rounded text-xs focus-ring touch-target"
- placeholder="file.py, @web, @codebase, #image">
- </div>
-
- <!-- Prompt Text -->
- <div class="space-y-1">
- <label class="text-xs font-medium text-dynamic-muted-foreground">Prompt Text</label>
- <textarea id="designer-prompt"
- class="w-full p-2 bg-dynamic-background border border-dynamic-border rounded text-xs resize-none focus-ring custom-scrollbar touch-target"
- rows="6"
- placeholder="Enter your prompt..."></textarea>
- </div>
- </div>
-
- <!-- AI SETTINGS SECTION -->
- <div class="space-y-2">
- <h3 class="text-xs font-semibold text-dynamic-foreground uppercase tracking-wider border-b border-dynamic-border pb-1">AI Settings</h3>
-
- <!-- Model & Mode Grid -->
- <div class="grid grid-cols-2 gap-2">
- <div class="space-y-1">
- <label class="text-xs font-medium text-dynamic-muted-foreground">Model</label>
- <select id="designer-model" class="w-full p-2 bg-dynamic-background border border-dynamic-border rounded text-xs focus-ring touch-target">
- <option value="o3">o3</option>
- <option value="GPT 4.1">GPT 4.1</option>
- <option value="GPT 4o" selected>GPT 4o</option>
- <option value="Claude 3.7 Sonnet">Claude 3.7 Sonnet</option>
- <option value="Claude 4 Sonnet">Claude 4 Sonnet</option>
- <option value="Claude 4 Opus">Claude 4 Opus</option>
- <option value="Gemini 2.5 Pro">Gemini 2.5 Pro</option>
- <option value="DeepSeek R1">DeepSeek R1</option>
- <option value="custom">[Custom]</option>
- </select>
- <input type="text" id="designer-custom-model"
- class="w-full p-2 bg-dynamic-background border border-dynamic-border rounded text-xs focus-ring hidden touch-target"
- placeholder="Custom model">
- </div>
- <div class="space-y-1">
- <label class="text-xs font-medium text-dynamic-muted-foreground">Mode</label>
- <select id="designer-mode-select" class="w-full p-2 bg-dynamic-background border border-dynamic-border rounded text-xs focus-ring touch-target">
- <option value="chat">Chat</option>
- <option value="agent">Agent</option>
- <option value="manual">Manual</option>
- <option value="cloud">Cloud</option>
- </select>
- </div>
- </div>
-
- <!-- Options -->
- <div class="flex gap-4">
- <label class="flex items-center space-x-1.5 touch-target">
- <input type="checkbox" id="designer-thinking" class="rounded border-dynamic-border w-3.5 h-3.5">
- <span class="text-xs text-dynamic-muted-foreground">Thinking</span>
- </label>
- <label class="flex items-center space-x-1.5 touch-target">
- <input type="checkbox" id="designer-max" class="rounded border-dynamic-border w-3.5 h-3.5">
- <span class="text-xs text-dynamic-muted-foreground">MAX mode</span>
- </label>
- </div>
- </div>
-
- <!-- APPEARANCE SECTION -->
- <div class="space-y-2">
- <h3 class="text-xs font-semibold text-dynamic-foreground uppercase tracking-wider border-b border-dynamic-border pb-1">Appearance</h3>
-
- <!-- Theme Mode -->
- <div class="space-y-1">
- <label class="text-xs font-medium text-dynamic-muted-foreground">Theme</label>
- <div class="grid grid-cols-3 gap-1">
- <button type="button" id="theme-light" class="theme-mode-btn px-2 py-1.5 text-xs font-medium rounded border border-dynamic-border bg-dynamic-background hover:bg-dynamic-muted transition-colors text-center touch-target">
- Light
- </button>
- <button type="button" id="theme-dark" class="theme-mode-btn px-2 py-1.5 text-xs font-medium rounded border border-dynamic-border bg-dynamic-background hover:bg-dynamic-muted transition-colors text-center touch-target">
- Dark
- </button>
- <button type="button" id="theme-auto" class="theme-mode-btn px-2 py-1.5 text-xs font-medium rounded border border-dynamic-border bg-dynamic-primary text-white transition-colors text-center touch-target">
- Auto
- </button>
- </div>
- </div>
-
- <!-- Color Presets -->
- <div class="space-y-1">
- <label class="text-xs font-medium text-dynamic-muted-foreground">Colors</label>
- <div class="grid grid-cols-8 gap-1">
- <button type="button" class="color-preset w-full h-6 rounded border border-dynamic-border hover:border-dynamic-primary transition-colors touch-target"
- data-light="#6b7280" data-dark="#e5e7eb"
- style="background: linear-gradient(135deg, #6b7280 50%, #e5e7eb 50%)"
- title="Minimal"></button>
- <button type="button" class="color-preset w-full h-6 rounded border border-dynamic-border hover:border-dynamic-primary transition-colors touch-target"
- data-light="#1f2937" data-dark="#9ca3af"
- style="background: linear-gradient(135deg, #1f2937 50%, #9ca3af 50%)"
- title="Dark Gray"></button>
- <button type="button" class="color-preset w-full h-6 rounded border border-dynamic-border hover:border-dynamic-primary transition-colors touch-target"
- data-light="#64748b" data-dark="#94a3b8"
- style="background: linear-gradient(135deg, #64748b 50%, #94a3b8 50%)"
- title="Dimmed"></button>
- <button type="button" class="color-preset w-full h-6 rounded border border-dynamic-border hover:border-dynamic-primary transition-colors touch-target"
- data-light="#3b82f6" data-dark="#60a5fa"
- style="background: linear-gradient(135deg, #3b82f6 50%, #60a5fa 50%)"
- title="Blue"></button>
- <button type="button" class="color-preset w-full h-6 rounded border border-dynamic-border hover:border-dynamic-primary transition-colors touch-target"
- data-light="#10b981" data-dark="#34d399"
- style="background: linear-gradient(135deg, #10b981 50%, #34d399 50%)"
- title="Green"></button>
- <button type="button" class="color-preset w-full h-6 rounded border border-dynamic-border hover:border-dynamic-primary transition-colors touch-target"
- data-light="#8b5cf6" data-dark="#a78bfa"
- style="background: linear-gradient(135deg, #8b5cf6 50%, #a78bfa 50%)"
- title="Purple"></button>
- <button type="button" class="color-preset w-full h-6 rounded border border-dynamic-border hover:border-dynamic-primary transition-colors touch-target"
- data-light="#f97316" data-dark="#fb923c"
- style="background: linear-gradient(135deg, #f97316 50%, #fb923c 50%)"
- title="Orange"></button>
- <button type="button" class="color-preset w-full h-6 rounded border border-dynamic-border hover:border-dynamic-primary transition-colors touch-target"
- data-light="#ec4899" data-dark="#f472b6"
- style="background: linear-gradient(135deg, #ec4899 50%, #f472b6 50%)"
- title="Pink"></button>
- </div>
- </div>
-
- <!-- Custom Colors -->
- <div class="grid grid-cols-2 gap-2">
- <div class="space-y-1">
- <label class="text-[10px] text-dynamic-muted-foreground">Light</label>
- <div class="flex gap-1">
- <input type="color" id="designer-light-color" value="#3b82f6" class="w-6 h-6 rounded border border-dynamic-border cursor-pointer touch-target">
- <input type="text" id="designer-light-color-text" value="#3b82f6" class="flex-1 px-1 py-1 bg-dynamic-background border border-dynamic-border rounded text-[10px] focus-ring font-mono touch-target" pattern="^#[0-9A-Fa-f]{6}$">
- </div>
- </div>
- <div class="space-y-1">
- <label class="text-[10px] text-dynamic-muted-foreground">Dark</label>
- <div class="flex gap-1">
- <input type="color" id="designer-dark-color" value="#60a5fa" class="w-6 h-6 rounded border border-dynamic-border cursor-pointer touch-target">
- <input type="text" id="designer-dark-color-text" value="#60a5fa" class="flex-1 px-1 py-1 bg-dynamic-background border border-dynamic-border rounded text-[10px] focus-ring font-mono touch-target" pattern="^#[0-9A-Fa-f]{6}$">
- </div>
- </div>
- </div>
-
- <!-- Height -->
- <div class="space-y-1">
- <label class="text-xs font-medium text-dynamic-muted-foreground">
- Height: <span id="height-value" class="text-dynamic-foreground">400</span>px
- </label>
- <input type="range" id="designer-height"
- class="w-full h-1.5 bg-dynamic-muted rounded-lg appearance-none cursor-pointer slider"
- min="200" max="800" value="400" step="50">
- <div class="flex justify-between text-[10px] text-dynamic-muted-foreground opacity-60">
- <span>200px</span>
- <span>800px</span>
- </div>
- </div>
- </div>
-
- <!-- FEATURES SECTION -->
- <div class="space-y-2">
- <h3 class="text-xs font-semibold text-dynamic-foreground uppercase tracking-wider border-b border-dynamic-border pb-1">Features</h3>
-
- <!-- File Tree -->
- <div class="space-y-1">
- <div class="flex items-center justify-between">
- <label class="text-xs font-medium text-dynamic-muted-foreground">File Tree</label>
- <label class="flex items-center space-x-1 text-[10px]">
- <input type="checkbox" id="designer-show-filetree" class="rounded border-dynamic-border w-3 h-3" checked>
- <span class="text-dynamic-muted-foreground">Show</span>
- </label>
- </div>
- <textarea id="designer-filetree"
- class="w-full p-2 bg-dynamic-background border border-dynamic-border rounded text-[10px] resize-none focus-ring custom-scrollbar touch-target font-mono"
- rows="4"
- placeholder="index.html styles/main.css scripts/app.js components/header.vue"></textarea>
- <p class="text-[9px] text-dynamic-muted-foreground opacity-60">
- One per line. Use / for folders. Add * to highlight.
- </p>
- </div>
-
- <!-- Diff View -->
- <div class="space-y-1">
- <div class="flex items-center justify-between">
- <label class="text-xs font-medium text-dynamic-muted-foreground">Diff View</label>
- <label class="flex items-center space-x-1 text-[10px]">
- <input type="checkbox" id="designer-show-diff" class="rounded border-dynamic-border w-3 h-3">
- <span class="text-dynamic-muted-foreground">Show</span>
- </label>
- </div>
- <div id="diff-fields" class="space-y-2 hidden">
- <div class="grid grid-cols-2 gap-2">
- <div>
- <label class="text-[10px] text-dynamic-muted-foreground">Filename</label>
- <input type="text" id="designer-diff-filename"
- class="w-full p-1.5 bg-dynamic-background border border-dynamic-border rounded text-[10px] focus-ring touch-target font-mono"
- placeholder="file.tsx">
- </div>
- <div>
- <label class="text-[10px] text-dynamic-muted-foreground">Flash</label>
- <select id="designer-flash-button" class="w-full p-1.5 bg-dynamic-background border border-dynamic-border rounded text-[10px] focus-ring touch-target">
- <option value="none">None</option>
- <option value="accept">Accept</option>
- <option value="reject">Reject</option>
- </select>
- </div>
- </div>
- <div>
- <label class="text-[10px] text-dynamic-muted-foreground">Old Text</label>
- <textarea id="designer-diff-old"
- class="w-full p-2 bg-dynamic-background border border-dynamic-border rounded text-[10px] resize-none focus-ring custom-scrollbar touch-target font-mono"
- rows="3"
- placeholder="// Original code..."></textarea>
- </div>
- <div>
- <label class="text-[10px] text-dynamic-muted-foreground">New Text</label>
- <textarea id="designer-diff-new"
- class="w-full p-2 bg-dynamic-background border border-dynamic-border rounded text-[10px] resize-none focus-ring custom-scrollbar touch-target font-mono"
- rows="3"
- placeholder="// Updated code..."></textarea>
- </div>
- <p class="text-[9px] text-dynamic-muted-foreground opacity-50">
- Keep short for URL sharing.
- </p>
- </div>
- </div>
- </div>
- </div>
- </div>
-
- <!-- Generate Buttons - Fixed at bottom -->
- <div class="p-3 lg:p-4 space-y-2 border-t border-dynamic-border bg-dynamic-muted">
- <button id="generate-embed" class="w-full bg-dynamic-primary text-white p-2.5 rounded text-xs font-medium hover:opacity-90 transition-opacity touch-target">
- Generate Embed Code
- </button>
- <button id="reset-settings" class="text-[10px] text-dynamic-muted-foreground hover:text-dynamic-foreground transition-colors opacity-50 hover:opacity-100 touch-target">
- Reset settings
- </button>
- </div>
- </div>
-
- <!-- Right Panel - Preview -->
- <div class="flex-none lg:flex-1 flex items-center justify-center px-4 pb-4 pt-0 lg:p-8 bg-dynamic-muted/20 order-1 lg:order-2 min-h-[300px] lg:min-h-0">
- <div class="w-full max-w-3xl">
- <h3 class="text-center text-sm font-medium text-dynamic-muted-foreground mb-4 hidden lg:block">Preview of the embed. You can change the settings below.</h3>
- <div id="preview-wrapper" class="bg-dynamic-background border border-dynamic-border rounded-xl overflow-hidden shadow-lg h-[250px] sm:h-[300px] lg:h-[400px] mt-4 lg:mt-0">
- <div class="h-full" id="preview-container">
- <!-- Preview iframe will be injected here -->
- </div>
- </div>
- <div class="mt-4 space-y-1">
- <label class="text-[10px] text-dynamic-muted-foreground opacity-60 dark:opacity-40">Click to copy iframe code:</label>
- <div id="iframe-snippet" class="px-2 py-1 bg-dynamic-muted/30 border border-dynamic-border/50 rounded text-[10px] text-dynamic-muted-foreground font-mono cursor-pointer hover:bg-dynamic-muted/50 hover:text-dynamic-foreground transition-all overflow-hidden touch-target">
- <iframe src="..."></iframe>
- </div>
- </div>
- </div>
- </div>
- </div>
-
- <!-- Embed Code Modal -->
- <div id="embed-modal" class="hidden fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center p-4 z-50">
- <div class="bg-dynamic-background rounded-xl p-4 lg:p-6 max-w-2xl w-full max-h-[90vh] lg:max-h-[80vh] overflow-y-auto">
- <div class="flex justify-between items-center mb-4">
- <h3 class="text-lg font-semibold text-dynamic-foreground">Embed Code</h3>
- <button id="close-modal" class="text-dynamic-muted-foreground hover:text-dynamic-foreground touch-target p-1">
- <svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
- <path d="M18 6L6 18M6 6l12 12"/>
- </svg>
- </button>
- </div>
- <div class="space-y-4">
- <div>
- <label class="text-sm font-medium text-dynamic-muted-foreground">iframe Embed Code</label>
- <textarea id="embed-code" class="w-full p-3 bg-dynamic-muted border border-dynamic-border rounded-lg text-sm font-mono mt-2 resize-none" rows="4" readonly></textarea>
- <button id="copy-embed-code" class="mt-2 px-4 py-3 lg:py-2 bg-dynamic-primary text-white rounded-lg text-sm hover:opacity-90 touch-target">Copy Code</button>
- </div>
- <div>
- <label class="text-sm font-medium text-dynamic-muted-foreground">Share URL</label>
- <textarea id="share-url" class="w-full p-3 bg-dynamic-muted border border-dynamic-border rounded-lg text-sm font-mono mt-2 resize-none" rows="2" readonly></textarea>
- <button id="copy-share-url" class="mt-2 px-4 py-3 lg:py-2 bg-dynamic-muted text-dynamic-foreground rounded-lg text-sm hover:bg-opacity-80 touch-target">Copy URL</button>
- </div>
- </div>
- </div>
- </div>
-
- <!-- Notification -->
- <div id="notification" class="fixed top-4 right-4 bg-dynamic-accent text-white px-4 py-2 rounded-lg font-medium opacity-0 transition-opacity z-50 pointer-events-none"></div>
-
- <script src="{{ '/embed-script.js' | relative_url }}"></script>
- </body>
- </html>
|