- Add Prompt Studio React app with cinematic prompt optimization - Integrate image generation via PHP backend API - Support multi-reference image uploads (up to 14 images) - Add resolution selector (1K/2K/4K) - Make generated prompts editable before image generation - Fix application lighting styles being passed to Gemini API - Reorganize UI: inputs on left, outputs on right - Update api.php to handle multiple reference images - Add get_current_image.php endpoint for session image retrieval 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
480 B
HTML
14 lines
480 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
|
|
<link rel="icon" type="image/png" href="/favicon.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Prompt Studio - AI Powered Cinematography Prompts</title>
|
|
</head>
|
|
<body class="bg-slate-950">
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|