Simplify Space intro text
Browse files
app.py
CHANGED
|
@@ -199,36 +199,22 @@ with gr.Blocks(
|
|
| 199 |
css=custom_css,
|
| 200 |
) as demo:
|
| 201 |
gr.Markdown(
|
| 202 |
-
|
| 203 |
-
<div id="solricks-hero">
|
| 204 |
-
|
| 205 |
-
|
| 206 |
-
|
| 207 |
-
|
| 208 |
-
|
| 209 |
-
|
| 210 |
-
|
| 211 |
-
|
| 212 |
-
<span class="solricks-pill">Public demo</span>
|
| 213 |
-
<span class="solricks-pill">Rate-limited</span>
|
| 214 |
-
<span class="solricks-pill">Preview generations</span>
|
| 215 |
-
<span class="solricks-pill">Powered by Solricks backend</span>
|
| 216 |
</div>
|
| 217 |
-
|
| 218 |
-
"""
|
| 219 |
)
|
| 220 |
|
| 221 |
with gr.Row():
|
| 222 |
with gr.Column(scale=5):
|
| 223 |
-
gr.Markdown(
|
| 224 |
-
"""
|
| 225 |
-
<div id="solricks-panel-note">
|
| 226 |
-
<strong>Tip:</strong> Use clear prompts with subject, style, lighting, and scene details.
|
| 227 |
-
For example: <em>cinematic AI robot in a dark premium technology lab, blue accent lighting, realistic details</em>.
|
| 228 |
-
</div>
|
| 229 |
-
"""
|
| 230 |
-
)
|
| 231 |
-
|
| 232 |
prompt = gr.Textbox(
|
| 233 |
label="Prompt",
|
| 234 |
placeholder="Describe the image you want to generate...",
|
|
|
|
| 199 |
css=custom_css,
|
| 200 |
) as demo:
|
| 201 |
gr.Markdown(
|
| 202 |
+
"""
|
| 203 |
+
<div id="solricks-hero">
|
| 204 |
+
<div id="solricks-kicker">SOLRICKS 路 VISUAL AI PREVIEW</div>
|
| 205 |
+
<h1>SOLRICKS Image Generator</h1>
|
| 206 |
+
<p>Generate a free preview image using the Solricks visual AI backend.</p>
|
| 207 |
+
<div id="solricks-note-row">
|
| 208 |
+
<span class="solricks-pill">Public demo</span>
|
| 209 |
+
<span class="solricks-pill">Rate-limited</span>
|
| 210 |
+
<span class="solricks-pill">Preview generations</span>
|
| 211 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
| 212 |
</div>
|
| 213 |
+
"""
|
|
|
|
| 214 |
)
|
| 215 |
|
| 216 |
with gr.Row():
|
| 217 |
with gr.Column(scale=5):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 218 |
prompt = gr.Textbox(
|
| 219 |
label="Prompt",
|
| 220 |
placeholder="Describe the image you want to generate...",
|