Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -63,6 +63,13 @@ with gr.Blocks(title="🍽️ NourishNet AI") as demo:
|
|
| 63 |
Enter meal count, type, and expiry hours, and get a recommended recipient with AI reasoning.
|
| 64 |
"""
|
| 65 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
|
| 67 |
with gr.Row():
|
| 68 |
quantity_input = gr.Number(label="Number of Meals", value=10)
|
|
|
|
| 63 |
Enter meal count, type, and expiry hours, and get a recommended recipient with AI reasoning.
|
| 64 |
"""
|
| 65 |
)
|
| 66 |
+
gr.HTML("""
|
| 67 |
+
<style>
|
| 68 |
+
body { font-family: 'Poppins', sans-serif; }
|
| 69 |
+
.gr-button { background: linear-gradient(90deg, #FF7A00, #FFB347); border-radius: 12px; color: white; font-weight: bold; }
|
| 70 |
+
.gr-textbox { border: 2px solid #FF7A00; border-radius: 10px; padding: 10px; background-color: #FFF8F0; }
|
| 71 |
+
</style>
|
| 72 |
+
""")
|
| 73 |
|
| 74 |
with gr.Row():
|
| 75 |
quantity_input = gr.Number(label="Number of Meals", value=10)
|