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

Add content section to display digital marketing insights and analysis

Browse files
Files changed (1) hide show
  1. pages/output.py +8 -0
pages/output.py CHANGED
@@ -196,6 +196,14 @@ Regardless, it is still a great channel worth investing to improve a business’
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")
 
196
  write_table(social_media_data)
197
 
198
  st.markdown("---")
199
+
200
+ # Write SocMed Table
201
+ st.markdown("### CONTENT")
202
+ st.markdown(f"""Content is king in digital marketing. People log into the internet to look for and consume information in different formats: text-based, video, audio, or image. Content is what help businesses establish their expertise in the industry, convert leads into customers, guide their customers through their sales funnel, and build relationships with their customers. """)
203
+ content_data = get_analyst_response("Content Analyst")
204
+ write_table(content_data)
205
+
206
+ st.markdown("---")
207
 
208
  if st.button("Back to Dashboard"):
209
  st.switch_page("pages/home.py")