Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -69,18 +69,25 @@ with gr.Blocks(css="""
|
|
69 |
.logo-container {
|
70 |
display: flex;
|
71 |
justify-content: center;
|
72 |
-
|
|
|
|
|
73 |
}
|
74 |
.logo-container img {
|
75 |
-
max-width:
|
76 |
height: auto;
|
77 |
border-radius: 8px;
|
|
|
78 |
}
|
79 |
""", theme=gr.themes.Soft()) as demo:
|
80 |
|
81 |
with gr.Column():
|
82 |
with gr.Row():
|
83 |
-
gr.HTML("
|
|
|
|
|
|
|
|
|
84 |
gr.Markdown("### 🛋️ Luxury Decor Assistant")
|
85 |
gr.Markdown("Ask your decor questions based on real product descriptions. <br> Powered by **DeBERTa + FAISS + Falcon 1B**.")
|
86 |
|
|
|
69 |
.logo-container {
|
70 |
display: flex;
|
71 |
justify-content: center;
|
72 |
+
align-items: center;
|
73 |
+
margin-bottom: -20px;
|
74 |
+
padding-top: 20px;
|
75 |
}
|
76 |
.logo-container img {
|
77 |
+
max-width: 220px;
|
78 |
height: auto;
|
79 |
border-radius: 8px;
|
80 |
+
box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
|
81 |
}
|
82 |
""", theme=gr.themes.Soft()) as demo:
|
83 |
|
84 |
with gr.Column():
|
85 |
with gr.Row():
|
86 |
+
gr.HTML("""
|
87 |
+
<div class='logo-container'>
|
88 |
+
<img src='file/OnlineRetail.png' alt='Luxury Decor Logo' />
|
89 |
+
</div>
|
90 |
+
""")
|
91 |
gr.Markdown("### 🛋️ Luxury Decor Assistant")
|
92 |
gr.Markdown("Ask your decor questions based on real product descriptions. <br> Powered by **DeBERTa + FAISS + Falcon 1B**.")
|
93 |
|