dcavadia commited on
Commit
9ce96a1
·
1 Parent(s): a7c98bb

update footer style

Browse files
Files changed (1) hide show
  1. src/ui/styles.py +4 -4
src/ui/styles.py CHANGED
@@ -73,11 +73,11 @@ def get_footer_html() -> str:
73
  """Get HTML for application footer."""
74
  from ..config.settings import AppConfig
75
 
76
- return f"""<div style="text-align: center;">
77
 
78
  ---
79
 
80
- <h2 style="text-align: center;">🎓 Academic Research Project</h2>
81
 
82
  **Institution:** {AppConfig.INSTITUTION}
83
  **Advisor:** Dra. Margarita Oliver Lull
@@ -92,8 +92,8 @@ def get_footer_html() -> str:
92
 
93
  *Model v{AppConfig.VERSION} • Updated {AppConfig.LAST_UPDATE} • Research by Daniel Cavadia • TEG UCV 2025*
94
 
95
- </div>"""
96
- # Force rebuild
97
  def get_model_info_html() -> str:
98
  """Get HTML for model information."""
99
  from ..config.settings import AppConfig
 
73
  """Get HTML for application footer."""
74
  from ..config.settings import AppConfig
75
 
76
+ return f"""<center>
77
 
78
  ---
79
 
80
+ **🎓 Academic Research Project**
81
 
82
  **Institution:** {AppConfig.INSTITUTION}
83
  **Advisor:** Dra. Margarita Oliver Lull
 
92
 
93
  *Model v{AppConfig.VERSION} • Updated {AppConfig.LAST_UPDATE} • Research by Daniel Cavadia • TEG UCV 2025*
94
 
95
+ </center>"""
96
+
97
  def get_model_info_html() -> str:
98
  """Get HTML for model information."""
99
  from ..config.settings import AppConfig