improve wording, again
Browse files- src/app.py +17 -11
src/app.py
CHANGED
|
@@ -22,21 +22,27 @@ from enhancer import ESRGANUpscaler, ESRGANUpscalerCheckpoints
|
|
| 22 |
|
| 23 |
TITLE = """
|
| 24 |
<center>
|
| 25 |
-
|
|
|
|
| 26 |
Image Enhancer, Powered By Refiners
|
| 27 |
</h1>
|
| 28 |
|
| 29 |
-
<
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
|
| 34 |
-
<p>
|
| 35 |
-
<a style="font-size: 1.25rem;" href="https://blog.finegrain.ai/posts/reproducing-clarity-upscaler/" target="_blank">[blog post]</a>
|
| 36 |
-
<a style="font-size: 1.25rem;" href="https://github.com/finegrain-ai/refiners" target="_blank">[refiners]</a>
|
| 37 |
-
<a style="font-size: 1.25rem;" href="https://github.com/philz1337x/clarity-upscaler" target="_blank">[clarity-upscaler]</a>
|
| 38 |
-
<a style="font-size: 1.25rem;" href="https://finegrain.ai/" target="_blank">[finegrain]</a>
|
| 39 |
-
</p>
|
| 40 |
</center>
|
| 41 |
"""
|
| 42 |
|
|
|
|
| 22 |
|
| 23 |
TITLE = """
|
| 24 |
<center>
|
| 25 |
+
|
| 26 |
+
<h1 style="font-size: 1.5rem; margin-bottom: 0.5rem;">
|
| 27 |
Image Enhancer, Powered By Refiners
|
| 28 |
</h1>
|
| 29 |
|
| 30 |
+
<div style="display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 0.5rem; font-size: 1.25rem;">
|
| 31 |
+
<a href="https://blog.finegrain.ai/posts/reproducing-clarity-upscaler/" target="_blank">[blog post]</a>
|
| 32 |
+
<a href="https://github.com/finegrain-ai/refiners" target="_blank">[refiners]</a>
|
| 33 |
+
<a href="https://github.com/philz1337x/clarity-upscaler" target="_blank">[clarity-upscaler]</a>
|
| 34 |
+
<a href="https://finegrain.ai/" target="_blank">[finegrain]</a>
|
| 35 |
+
</div>
|
| 36 |
+
|
| 37 |
+
<div style="display: flex; align-items: center; justify-content: center; gap: 0.5rem;">
|
| 38 |
+
<p style="margin: 0;">
|
| 39 |
+
If you enjoyed this space, please consider starring Refiners on GitHub!
|
| 40 |
+
</p>
|
| 41 |
+
<a href="https://github.com/finegrain-ai/refiners" target="_blank">
|
| 42 |
+
<img src="https://img.shields.io/github/stars/finegrain-ai/refiners?style=social"/>
|
| 43 |
+
</a>
|
| 44 |
+
</div>
|
| 45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46 |
</center>
|
| 47 |
"""
|
| 48 |
|