Romeo David commited on
Commit
67b44b5
·
1 Parent(s): 3445bb2

Refactor marketplace data retrieval logic and add conversion activation sections to the digital marketing audit output

Browse files
Files changed (1) hide show
  1. pages/output.py +20 -5
pages/output.py CHANGED
@@ -206,11 +206,11 @@ Regardless, it is still a great channel worth investing to improve a business’
206
 
207
  st.markdown("---")
208
 
209
- # if not ("404" in get_analyst_response("Marketplace Analyst")):
210
- # st.markdown("### MARKET PLACE")
211
- # marketpalce_data = get_analyst_response("Marketplace Analyst")
212
- # write_table(marketpalce_data)
213
- # st.markdown("---")
214
 
215
 
216
  st.markdown("## OTHER INFORMATION")
@@ -261,6 +261,21 @@ We have evaluated the process of content development strategy and existing conte
261
  st.write("TBD")
262
 
263
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
264
  if st.button("Back to Dashboard", icon="🏠"):
265
  st.switch_page("pages/home.py")
266
  display_outputs()
 
206
 
207
  st.markdown("---")
208
 
209
+ if (get_analyst_response("Marketplace Analyst")):
210
+ st.markdown("### MARKET PLACE")
211
+ marketpalce_data = get_analyst_response("Marketplace Analyst")
212
+ write_table(marketpalce_data)
213
+ st.markdown("---")
214
 
215
 
216
  st.markdown("## OTHER INFORMATION")
 
261
  st.write("TBD")
262
 
263
 
264
+ st.markdown("---")
265
+ st.markdown("#### CONVERSION – ACTIVATION OF VISITORS")
266
+ st.markdown("##### AWARENESS TO TRAFFIC")
267
+ st.write("TBD")
268
+ st.markdown("##### TRAFFIC TO LEAD CONVERSION")
269
+ st.write("TBD")
270
+ st.markdown("##### LEAD TO SALES CONVERSION")
271
+ st.write("TBD")
272
+ st.markdown("##### CONVERSION TO BRAND LOYALTY")
273
+ st.write("TBD")
274
+
275
+ st.markdown("##### CONNECTION OF ALL ONLINE AND OFFLINE TOUCH POINTS")
276
+ st.write("TBD")
277
+
278
+
279
  if st.button("Back to Dashboard", icon="🏠"):
280
  st.switch_page("pages/home.py")
281
  display_outputs()