Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -124,19 +124,6 @@ with gr.Blocks(
|
|
124 |
<h1>끝장AI FLUX.1 이미지 생성기</h1>
|
125 |
"""
|
126 |
)
|
127 |
-
gr.HTML(
|
128 |
-
"""
|
129 |
-
<div class='footer-content'>
|
130 |
-
<p style='font-size: 1.1rem; font-weight: 500; color: #1F2937;'>끝장AI가 제공하는 고급 AI 도구를 더 경험하고 싶으신가요?</p>
|
131 |
-
<a href='https://finalendai.com' target='_blank' class='visit-button' style='color: white !important;'>
|
132 |
-
끝장AI 방문하기
|
133 |
-
</a>
|
134 |
-
<p style='margin-top: 1.5rem; color: #6B7280; font-size: 0.9rem;'>
|
135 |
-
© 2024 끝장AI. All rights reserved.
|
136 |
-
</p>
|
137 |
-
</div>
|
138 |
-
"""
|
139 |
-
)
|
140 |
|
141 |
with gr.Group():
|
142 |
with gr.Column():
|
@@ -224,4 +211,19 @@ with gr.Blocks(
|
|
224 |
outputs=[result],
|
225 |
)
|
226 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
demo.queue().launch(share=False)
|
|
|
124 |
<h1>끝장AI FLUX.1 이미지 생성기</h1>
|
125 |
"""
|
126 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
|
128 |
with gr.Group():
|
129 |
with gr.Column():
|
|
|
211 |
outputs=[result],
|
212 |
)
|
213 |
|
214 |
+
# Footer at the bottom
|
215 |
+
gr.HTML(
|
216 |
+
"""
|
217 |
+
<div class='footer-content'>
|
218 |
+
<p style='font-size: 1.1rem; font-weight: 500; color: #1F2937;'>끝장AI가 제공하는 고급 AI 도구를 더 경험하고 싶으신가요?</p>
|
219 |
+
<a href='https://finalendai.com' target='_blank' class='visit-button' style='color: white !important;'>
|
220 |
+
끝장AI 방문하기
|
221 |
+
</a>
|
222 |
+
<p style='margin-top: 1.5rem; color: #6B7280; font-size: 0.9rem;'>
|
223 |
+
© 2024 끝장AI. All rights reserved.
|
224 |
+
</p>
|
225 |
+
</div>
|
226 |
+
"""
|
227 |
+
)
|
228 |
+
|
229 |
demo.queue().launch(share=False)
|