cyberandy commited on
Commit
524e75e
1 Parent(s): 6362c0e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -129,12 +129,6 @@ def parse_analysis(analysis_message):
129
 
130
 
131
  def main():
132
- # Collapsible box with link to the site
133
- with st.expander("Important Information", expanded=False):
134
- st.markdown("""
135
- - 🚨 **This is an experimental tool**: Functionality might vary, and it may not always work as expected.
136
- - 📖 **Learn more about our research**: Understand what Meta AI is and why SEO matters by reading our in-depth article. [Read about Meta AI and SEO](https://wordlift.io/blog/en/meta-ai-seo/)""")
137
-
138
  # Path to the image
139
  image_path = 'img/meta-ai-logo.png' # Replace with your image's filename and extension
140
 
@@ -149,6 +143,12 @@ def main():
149
  with col2:
150
  st.title("Meta AI SEO Tool")
151
 
 
 
 
 
 
 
152
  # User input
153
  user_query = st.text_area("Enter your query:", height=150, key="query_overview")
154
  submit_button = st.button("Analyze Query", key="submit_overview")
 
129
 
130
 
131
  def main():
 
 
 
 
 
 
132
  # Path to the image
133
  image_path = 'img/meta-ai-logo.png' # Replace with your image's filename and extension
134
 
 
143
  with col2:
144
  st.title("Meta AI SEO Tool")
145
 
146
+ # Collapsible box with link to the site
147
+ with st.expander("Important Information", expanded=False):
148
+ st.markdown("""
149
+ - 🚨 **This is an experimental tool**: Functionality might vary, and it may not always work as expected.
150
+ - 📖 **Learn more about our research**: Understand what Meta AI is and why SEO matters by reading our in-depth article. [Read about Meta AI and SEO](https://wordlift.io/blog/en/meta-ai-seo/)""")
151
+
152
  # User input
153
  user_query = st.text_area("Enter your query:", height=150, key="query_overview")
154
  submit_button = st.button("Analyze Query", key="submit_overview")