Update app.py
Browse files
app.py
CHANGED
|
@@ -148,6 +148,32 @@ with gr.Blocks(css=ui_manager.custom_css, title="Pixcribe - AI Social Media Capt
|
|
| 148 |
# Footer
|
| 149 |
ui_manager.create_footer()
|
| 150 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 151 |
# Connect button to processing function
|
| 152 |
analyze_btn.click(
|
| 153 |
fn=process_wrapper,
|
|
|
|
| 148 |
# Footer
|
| 149 |
ui_manager.create_footer()
|
| 150 |
|
| 151 |
+
gr.HTML('''
|
| 152 |
+
<div style="
|
| 153 |
+
display: flex;
|
| 154 |
+
align-items: center;
|
| 155 |
+
justify-content: center;
|
| 156 |
+
gap: 20px;
|
| 157 |
+
padding: 20px 0;
|
| 158 |
+
">
|
| 159 |
+
<p style="
|
| 160 |
+
font-family: 'Arial', sans-serif;
|
| 161 |
+
font-size: 14px;
|
| 162 |
+
font-weight: 500;
|
| 163 |
+
letter-spacing: 2px;
|
| 164 |
+
background: linear-gradient(90deg, #555, #007ACC);
|
| 165 |
+
-webkit-background-clip: text;
|
| 166 |
+
-webkit-text-fill-color: transparent;
|
| 167 |
+
margin: 0;
|
| 168 |
+
text-transform: uppercase;
|
| 169 |
+
display: inline-block;
|
| 170 |
+
">EXPLORE THE CODE →</p>
|
| 171 |
+
<a href="https://github.com/Eric-Chung-0511/Learning-Record/tree/main/Data%20Science%20Projects/Pixcribe" style="text-decoration: none;">
|
| 172 |
+
<img src="https://img.shields.io/badge/GitHub-Pixcribe-007ACC?logo=github&style=for-the-badge">
|
| 173 |
+
</a>
|
| 174 |
+
</div>
|
| 175 |
+
''')
|
| 176 |
+
|
| 177 |
# Connect button to processing function
|
| 178 |
analyze_btn.click(
|
| 179 |
fn=process_wrapper,
|