hassan773 commited on
Commit
3da4140
·
verified ·
1 Parent(s): fee6bb3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -5
app.py CHANGED
@@ -118,13 +118,22 @@ with gr.Blocks() as demo:
118
  elem_id="system-prompt-container"
119
  )
120
 
121
- # LinkedIn Support
122
  gr.HTML("""
123
  <div style="text-align: center; margin-top: 20px; padding-top: 15px; border-top: 1px solid #ddd;">
124
- <p style="font-size: 0.85em; color: #555; margin-bottom: 10px;">Connect with the developer</p>
125
- <a href="https://www.linkedin.com/in/hassan-naseer-web-developer" target="_blank">
126
- <svg width="30" height="30" viewBox="0 0 24 24" fill="#0077b5"><path d="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.239-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z"/></svg>
127
- </a>
 
 
 
 
 
 
 
 
 
128
  </div>
129
  """)
130
 
 
118
  elem_id="system-prompt-container"
119
  )
120
 
121
+ # Updated Support Section with LinkedIn & Email
122
  gr.HTML("""
123
  <div style="text-align: center; margin-top: 20px; padding-top: 15px; border-top: 1px solid #ddd;">
124
+ <p style="font-size: 0.85em; color: #555; margin-bottom: 12px;">Connect with the developer</p>
125
+ <div style="display: flex; justify-content: center; gap: 20px; align-items: center;">
126
+ <a href="https://www.linkedin.com/in/hassan-naseer-web-developer" target="_blank" style="text-decoration: none;">
127
+ <svg width="30" height="30" viewBox="0 0 24 24" fill="#0077b5">
128
+ <path d="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.239-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z"/>
129
+ </svg>
130
+ </a>
131
+ <a href="mailto:YOUR_EMAIL@gmail.com" style="text-decoration: none;">
132
+ <svg width="30" height="30" viewBox="0 0 24 24" fill="#555">
133
+ <path d="M0 3v18h24v-18h-24zm21.518 2l-9.518 7.713-9.518-7.713h19.036zm-19.518 14v-11.817l10 8.104 10-8.104v11.817h-20z"/>
134
+ </svg>
135
+ </a>
136
+ </div>
137
  </div>
138
  """)
139