Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -37,7 +37,19 @@ def display_sources(sources):
|
|
| 37 |
|
| 38 |
|
| 39 |
def main():
|
| 40 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
|
| 42 |
# User input
|
| 43 |
user_query = st.text_area("Enter your query:", height=150)
|
|
|
|
| 37 |
|
| 38 |
|
| 39 |
def main():
|
| 40 |
+
# Path to the image
|
| 41 |
+
image_path = 'img/meta-ai-logo.webp' # Replace with your image's filename and extension
|
| 42 |
+
|
| 43 |
+
# Create two columns
|
| 44 |
+
col1, col2 = st.columns([1, 4]) # Adjust the ratio as needed for your layout
|
| 45 |
+
|
| 46 |
+
# Use the first column to display the image
|
| 47 |
+
with col1:
|
| 48 |
+
st.image(image_path)
|
| 49 |
+
|
| 50 |
+
# Use the second column to display the title and other content
|
| 51 |
+
with col2:
|
| 52 |
+
st.title("Meta AI SEO Tool")
|
| 53 |
|
| 54 |
# User input
|
| 55 |
user_query = st.text_area("Enter your query:", height=150)
|