nexusbert commited on
Commit
6a2acd0
·
1 Parent(s): 36261a0
Files changed (1) hide show
  1. app.py +38 -0
app.py CHANGED
@@ -47,6 +47,22 @@ custom_css = """
47
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
48
  border-top: 3px solid #667eea;
49
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
  """
51
 
52
  def create_portfolio():
@@ -217,6 +233,28 @@ def create_portfolio():
217
  - Multi-model ecosystem
218
  """)
219
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
220
  # Footer
221
  gr.Markdown("""
222
  ---
 
47
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
48
  border-top: 3px solid #667eea;
49
  }
50
+ .contact-info {
51
+ padding: 1.5rem;
52
+ margin: 1rem 0;
53
+ background: white;
54
+ border-radius: 8px;
55
+ box-shadow: 0 2px 8px rgba(0,0,0,0.1);
56
+ }
57
+ .contact-link {
58
+ color: #667eea;
59
+ text-decoration: none;
60
+ font-weight: 500;
61
+ }
62
+ .contact-link:hover {
63
+ color: #764ba2;
64
+ text-decoration: underline;
65
+ }
66
  """
67
 
68
  def create_portfolio():
 
233
  - Multi-model ecosystem
234
  """)
235
 
236
+ # Contact Section
237
+ gr.Markdown("""
238
+ ## Contact Me
239
+ """)
240
+
241
+ gr.HTML("""
242
+ <div class="contact-info">
243
+ <p style="font-size: 1.1rem; margin-bottom: 1rem;">
244
+ <strong>📧 Email:</strong>
245
+ <a href="mailto:omezirizion@gmail.com" class="contact-link">omezirizion@gmail.com</a>
246
+ </p>
247
+ <p style="font-size: 1.1rem; margin-bottom: 1rem;">
248
+ <strong>📞 Phone:</strong>
249
+ <a href="tel:+2347052284817" class="contact-link">+2347052284817</a>
250
+ </p>
251
+ <p style="font-size: 1.1rem; margin-bottom: 0;">
252
+ <strong>💬 WhatsApp:</strong>
253
+ <a href="https://wa.me/2349123809756" class="contact-link" target="_blank">09123809756</a>
254
+ </p>
255
+ </div>
256
+ """)
257
+
258
  # Footer
259
  gr.Markdown("""
260
  ---