Romeo David commited on
Commit
367f4e6
·
1 Parent(s): e9cd26b

Add social media section to display marketing insights and data

Browse files
Files changed (1) hide show
  1. pages/output.py +10 -0
pages/output.py CHANGED
@@ -186,6 +186,16 @@ There are two types of SEO based on where the optimization is implemented: On-pa
186
  seo_on_page_table(on_page_data)
187
 
188
  st.markdown("---")
 
 
 
 
 
 
 
 
 
 
189
 
190
  if st.button("Back to Dashboard"):
191
  st.switch_page("pages/home.py")
 
186
  seo_on_page_table(on_page_data)
187
 
188
  st.markdown("---")
189
+
190
+ # Write SocMed Table
191
+ st.markdown("### SOCIAL MEDIA")
192
+ st.markdown(f"""Social Media Marketing for the B2B industry is tricky. While B2C businesses can easily have millions of fans through social media, B2B lead generation such as {client_name} sources from a significantly smaller market.
193
+
194
+ Regardless, it is still a great channel worth investing to improve a business’ lead generation if handled correctly. {client_name}, along with its competitors, are found to be using different social media platforms to extend their brand presence. """)
195
+ social_media_data = get_analyst_response("Social Media Analyst")
196
+ write_table(social_media_data)
197
+
198
+ st.markdown("---")
199
 
200
  if st.button("Back to Dashboard"):
201
  st.switch_page("pages/home.py")