ifiecas commited on
Commit
1715968
·
verified ·
1 Parent(s): d740257

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -7
app.py CHANGED
@@ -128,16 +128,17 @@ st.markdown("""
128
  font-size: 0.8rem;
129
  margin-left: 0.5rem;
130
  }
 
 
 
 
 
 
131
  </style>
132
  """, unsafe_allow_html=True)
133
 
134
- # App header with logo
135
- col1, col2 = st.columns([1, 5])
136
- with col1:
137
- st.markdown('<div style="text-align: center; padding: 10px;"><span style="font-size: 40px;">🏦</span></div>', unsafe_allow_html=True)
138
- with col2:
139
- st.title("AI-Powered Loan Approval System")
140
- st.markdown('<p style="color: #666;">Fast and reliable loan approval decisions</p>', unsafe_allow_html=True)
141
 
142
  # Load the trained model from Hugging Face
143
  @st.cache_resource
 
128
  font-size: 0.8rem;
129
  margin-left: 0.5rem;
130
  }
131
+
132
+ /* Banner image styling */
133
+ .banner-image {
134
+ width: 100%;
135
+ margin-bottom: 1rem;
136
+ }
137
  </style>
138
  """, unsafe_allow_html=True)
139
 
140
+ # App header with banner image instead of title
141
+ st.markdown('<img src="https://i.postimg.cc/R0gGW9kb/ACTION-PLAN.png" class="banner-image" alt="SmartLoanAI Banner">', unsafe_allow_html=True)
 
 
 
 
 
142
 
143
  # Load the trained model from Hugging Face
144
  @st.cache_resource