Romeo David commited on
Commit
3445bb2
·
1 Parent(s): 37b4050

Enhance digital marketing audit output with additional insights and structured content sections

Browse files
Files changed (1) hide show
  1. pages/output.py +50 -1
pages/output.py CHANGED
@@ -159,7 +159,7 @@ With several businesses out there all vying for the same eyeballs, it’s never
159
  Currently, {client_name} has already explored numerous online advertising. Its competitors are also experienced in PPC in multiple platforms. """)
160
 
161
  # Write SEM Table
162
- sem_data = get_analyst_response("SEM PPC Analyst")
163
  write_table(sem_data)
164
 
165
  st.markdown("---")
@@ -210,6 +210,55 @@ Regardless, it is still a great channel worth investing to improve a business’
210
  # st.markdown("### MARKET PLACE")
211
  # marketpalce_data = get_analyst_response("Marketplace Analyst")
212
  # write_table(marketpalce_data)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
213
 
214
 
215
  if st.button("Back to Dashboard", icon="🏠"):
 
159
  Currently, {client_name} has already explored numerous online advertising. Its competitors are also experienced in PPC in multiple platforms. """)
160
 
161
  # Write SEM Table
162
+ sem_data = get_analyst_response("SEM/PPC Analyst")
163
  write_table(sem_data)
164
 
165
  st.markdown("---")
 
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")
217
+ st.markdown("### DIGITAL MARKETING APPROACH: CUSTOMER CENTRIC INBOUND MARKETING")
218
+ st.markdown(f"""Digital Marketing is often called in-bound marketing in a sense that it is not intrusive: a person must search for the information before the marketing stimulus is served to them. Unlike the traditional offline marketing which is more brand-centric in style and intrusive (they are served to you even though you did not intend to see the marketing stimulus), digital marketing is customer-centric: it takes into account the needs, thoughts, and considerations of the customer in all stages in the sales funnel while strategically serving them the appropriate content at the right time, at the right frequency, and through the correct channel. We suggest that {client_name} looks into the details below with the view of understanding where the brand’s footing is in some stages in their customer’s decision and buying journey. """)
219
+
220
+ st.markdown("##### TARGET MARKET")
221
+ st.write("TBD")
222
+
223
+ st.markdown("##### PRODUCT/SERVICE DEMOGRAPHICS")
224
+ st.write("TBD")
225
+
226
+ st.markdown("##### MARKETING MESSAGE SUMMARY")
227
+ st.write("TBD")
228
+
229
+ st.markdown("##### WHAT IS THE DESIRED OUTCOMES OF DIGITAL MARKETING?")
230
+ st.write("TBD")
231
+
232
+ st.markdown("##### WHAT IS THE PULL-THROUGH OFFER?")
233
+ st.write(get_analyst_response("Pull through offers Analyst"))
234
+
235
+
236
+ st.markdown("##### WEBSITE AUDIENCE ACQUISITION")
237
+ st.write("TBD")
238
+
239
+ #LLD/PM/LN
240
+ lld_data = get_analyst_response("LLD/PM/LN Analyst")
241
+ st.markdown("##### LEAD LIST DEVELOPMENT")
242
+ st.write(lld_data['lead_list_development'])
243
+
244
+ st.markdown("##### PROSPECTING MECHANISM")
245
+ st.write(lld_data['prospecting_mechanism'])
246
+
247
+ st.markdown("##### LEAD NURTURING")
248
+ st.write(lld_data['lead_nurturing'])
249
+
250
+
251
+
252
+ st.markdown("---")
253
+ st.markdown("#### CONTENT - PROCESS AND ASSETS")
254
+ st.write(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. \n
255
+ We have evaluated the process of content development strategy and existing content assets of {client_name} based on how they serve clients throughout the customer journey. """)
256
+ st.markdown("##### AWARENESS STAGE")
257
+ st.write("TBD")
258
+ st.markdown("##### CONSIDERATION STAGE")
259
+ st.write("TBD")
260
+ st.markdown("##### DECISION STAGE")
261
+ st.write("TBD")
262
 
263
 
264
  if st.button("Back to Dashboard", icon="🏠"):