df overview output

#10
by notjulietxd - opened
Files changed (1) hide show
  1. pages/output.py +2 -5
pages/output.py CHANGED
@@ -149,10 +149,7 @@ def seo_on_page_table(df_data):
149
  def display_outputs():
150
  client_name = data_field("Client Name")
151
  client_website = data_field("Client Website")
152
- overview = f"""{client_name} is a financial services company based in Auckland, New Zealand, specializing in providing quick and flexible loan solutions for businesses and individuals. Represented by Paul Stone, LoansOne has enlisted ShoreMarketing to perform a deep dive into their digital footprint to have a view of the holistic status of their digital properties and determine how each property can play part in implementing a stronger digital marketing plan.\n
153
- The Digital Marketing Footprint consists of deep-dive research by ShoreMarketing specialists to help the business leaders of LoansOne understand the effectiveness of their existing digital initiatives with the view of giving them an insight to developing a strategy and effectively allocating business resources to digital properties that will give them the best results.\n
154
- This document represents the results of our audit of LoansOne’s digital marketing and management practices. Our audit covered reviews of key digital areas: Website and Tools, PPC/SEM, SEO, Social Media, and Market Places."""
155
-
156
 
157
  st.markdown("# Digital Marketing Audit")
158
  st.markdown(f"for: **{client_name} ({client_website})**")
@@ -229,7 +226,7 @@ There are two types of SEO based on where the optimization is implemented: On-pa
229
 
230
  # Write Off Page Table
231
  st.markdown("### OFF PAGE OPTIMIZATION")
232
- on_page_data = get_analyst_response("Off Page Analyst")
233
  seo_on_page_table(on_page_data)
234
 
235
  st.markdown("<a href='#top'>Go to top</a>", unsafe_allow_html=True)
 
149
  def display_outputs():
150
  client_name = data_field("Client Name")
151
  client_website = data_field("Client Website")
152
+ overview = get_analyst_response("DF Overview Analyst")
 
 
 
153
 
154
  st.markdown("# Digital Marketing Audit")
155
  st.markdown(f"for: **{client_name} ({client_website})**")
 
226
 
227
  # Write Off Page Table
228
  st.markdown("### OFF PAGE OPTIMIZATION")
229
+ on_page_data = get_analyst_response("SEO Off Page Analyst")
230
  seo_on_page_table(on_page_data)
231
 
232
  st.markdown("<a href='#top'>Go to top</a>", unsafe_allow_html=True)