rmdhirr commited on
Commit
bdc3142
·
verified ·
1 Parent(s): 9b4d4c6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -98,5 +98,11 @@ interface = gr.Interface(
98
  css=".interface-container { border: 2px solid #4CAF50; border-radius: 10px; padding: 20px; }"
99
  )
100
 
 
 
 
101
  # Launch the Gradio interface
102
- interface.launch()
 
 
 
 
98
  css=".interface-container { border: 2px solid #4CAF50; border-radius: 10px; padding: 20px; }"
99
  )
100
 
101
+ # Add custom footer
102
+ footer = gr.HTML("<div style='text-align: center; margin-top: 20px;'>Made with ❤️ by Ramadhirra<br>Model by Ramadhirra<br>WebUI by Ramadhirra</div>")
103
+
104
  # Launch the Gradio interface
105
+ interface.launch()
106
+
107
+ # Add footer to interface
108
+ interface.layout(footer=footer)