push
Browse files
app.py
CHANGED
|
@@ -77,6 +77,7 @@ custom_css = """
|
|
| 77 |
text-decoration: none;
|
| 78 |
display: inline-block;
|
| 79 |
padding: 1rem 2rem;
|
|
|
|
| 80 |
background: rgba(255, 255, 255, 0.2);
|
| 81 |
border-radius: 8px;
|
| 82 |
border: 2px solid white;
|
|
@@ -147,9 +148,14 @@ def create_portfolio():
|
|
| 147 |
gr.HTML("""
|
| 148 |
<div class="proof-of-work">
|
| 149 |
<h2 style="color: white; margin-bottom: 1rem;">Proof of Work</h2>
|
| 150 |
-
<
|
| 151 |
-
|
| 152 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 153 |
</div>
|
| 154 |
""")
|
| 155 |
|
|
|
|
| 77 |
text-decoration: none;
|
| 78 |
display: inline-block;
|
| 79 |
padding: 1rem 2rem;
|
| 80 |
+
margin: 0.5rem;
|
| 81 |
background: rgba(255, 255, 255, 0.2);
|
| 82 |
border-radius: 8px;
|
| 83 |
border: 2px solid white;
|
|
|
|
| 148 |
gr.HTML("""
|
| 149 |
<div class="proof-of-work">
|
| 150 |
<h2 style="color: white; margin-bottom: 1rem;">Proof of Work</h2>
|
| 151 |
+
<div style="display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;">
|
| 152 |
+
<a href="https://huggingface.co/nexusbert" class="proof-of-work-link" target="_blank">
|
| 153 |
+
View My Work on Hugging Face
|
| 154 |
+
</a>
|
| 155 |
+
<a href="https://github.com/neuralnex" class="proof-of-work-link" target="_blank">
|
| 156 |
+
View My Work on GitHub
|
| 157 |
+
</a>
|
| 158 |
+
</div>
|
| 159 |
</div>
|
| 160 |
""")
|
| 161 |
|