push profile
Browse files
app.py
CHANGED
|
@@ -63,6 +63,31 @@ custom_css = """
|
|
| 63 |
color: #764ba2;
|
| 64 |
text-decoration: underline;
|
| 65 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
"""
|
| 67 |
|
| 68 |
def create_portfolio():
|
|
@@ -118,6 +143,16 @@ def create_portfolio():
|
|
| 118 |
**Yes, I use AI tools** — for further research, faster debugging, and as a tool to enhance my development workflow and productivity.
|
| 119 |
""")
|
| 120 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 121 |
# Core Skills Section
|
| 122 |
gr.Markdown("""
|
| 123 |
## Core Skills
|
|
|
|
| 63 |
color: #764ba2;
|
| 64 |
text-decoration: underline;
|
| 65 |
}
|
| 66 |
+
.proof-of-work {
|
| 67 |
+
text-align: center;
|
| 68 |
+
padding: 2rem;
|
| 69 |
+
margin: 2rem 0;
|
| 70 |
+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
| 71 |
+
border-radius: 10px;
|
| 72 |
+
}
|
| 73 |
+
.proof-of-work-link {
|
| 74 |
+
font-size: 1.5rem;
|
| 75 |
+
font-weight: 900;
|
| 76 |
+
color: white;
|
| 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;
|
| 83 |
+
transition: all 0.3s ease;
|
| 84 |
+
}
|
| 85 |
+
.proof-of-work-link:hover {
|
| 86 |
+
background: rgba(255, 255, 255, 0.3);
|
| 87 |
+
transform: scale(1.05);
|
| 88 |
+
text-decoration: none;
|
| 89 |
+
color: white;
|
| 90 |
+
}
|
| 91 |
"""
|
| 92 |
|
| 93 |
def create_portfolio():
|
|
|
|
| 143 |
**Yes, I use AI tools** — for further research, faster debugging, and as a tool to enhance my development workflow and productivity.
|
| 144 |
""")
|
| 145 |
|
| 146 |
+
# Proof of Work Section
|
| 147 |
+
gr.HTML("""
|
| 148 |
+
<div class="proof-of-work">
|
| 149 |
+
<h2 style="color: white; margin-bottom: 1rem;">Proof of Work</h2>
|
| 150 |
+
<a href="https://huggingface.co/nexusbert" class="proof-of-work-link" target="_blank">
|
| 151 |
+
View My Work on Hugging Face
|
| 152 |
+
</a>
|
| 153 |
+
</div>
|
| 154 |
+
""")
|
| 155 |
+
|
| 156 |
# Core Skills Section
|
| 157 |
gr.Markdown("""
|
| 158 |
## Core Skills
|