ovi054 commited on
Commit
72ada85
1 Parent(s): 1d6dbab

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -15,6 +15,8 @@ timeout = 100
15
 
16
  article_text = """
17
  <div style="text-align: center;">
 
 
18
  <div style="display: flex; justify-content: center;">
19
  <a href="https://piczify.lemonsqueezy.com/buy/0f5206fa-68e8-42f6-9ca8-4f80c587c83e">
20
  <img src="https://www.buymeacoffee.com/assets/img/custom_images/yellow_img.png"
@@ -22,8 +24,6 @@ article_text = """
22
  style="height: 40px; width: auto; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); border-radius: 10px;">
23
  </a>
24
  </div>
25
- <p>Enjoying the tool? Buy me a coffee and get exclusive prompt guides!</p>
26
- <p><i>Instantly unlock helpful tips for creating better prompts!</i></p>
27
  </div>
28
  """
29
 
@@ -115,12 +115,13 @@ with gr.Blocks(theme='Nymbo/Nymbo_Theme', css=css) as app:
115
  with gr.Row():
116
  seed_output = gr.Textbox(label="Seed Used", show_copy_button = True, elem_id="seed-output")
117
 
 
 
118
  gr.Examples(
119
  examples = examples,
120
  inputs = [text_prompt],
121
  )
122
 
123
- gr.Markdown(article_text)
124
 
125
  text_button.click(query, inputs=[custom_lora, text_prompt, negative_prompt, steps, cfg, method, seed, strength], outputs=[image_output,seed_output])
126
 
 
15
 
16
  article_text = """
17
  <div style="text-align: center;">
18
+ <p>Enjoying the tool? Buy me a coffee and get exclusive prompt guides!</p>
19
+ <p><i>Instantly unlock helpful tips for creating better prompts!</i></p>
20
  <div style="display: flex; justify-content: center;">
21
  <a href="https://piczify.lemonsqueezy.com/buy/0f5206fa-68e8-42f6-9ca8-4f80c587c83e">
22
  <img src="https://www.buymeacoffee.com/assets/img/custom_images/yellow_img.png"
 
24
  style="height: 40px; width: auto; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); border-radius: 10px;">
25
  </a>
26
  </div>
 
 
27
  </div>
28
  """
29
 
 
115
  with gr.Row():
116
  seed_output = gr.Textbox(label="Seed Used", show_copy_button = True, elem_id="seed-output")
117
 
118
+ gr.Markdown(article_text)
119
+
120
  gr.Examples(
121
  examples = examples,
122
  inputs = [text_prompt],
123
  )
124
 
 
125
 
126
  text_button.click(query, inputs=[custom_lora, text_prompt, negative_prompt, steps, cfg, method, seed, strength], outputs=[image_output,seed_output])
127