Spaces:
Build error
Build error
Romeo David commited on
Commit ·
e914088
1
Parent(s): 490cf96
craeted boilerplate for output page
Browse files- pages/analyzing_page.py +2 -2
- pages/output.py +22 -1
pages/analyzing_page.py
CHANGED
|
@@ -94,8 +94,8 @@ def run_analysis():
|
|
| 94 |
seo_thread.join()
|
| 95 |
st.success("🎉 All analyses completed!") # Final success message
|
| 96 |
# --- Display Button After Completion ---
|
| 97 |
-
|
| 98 |
-
|
| 99 |
|
| 100 |
|
| 101 |
|
|
|
|
| 94 |
seo_thread.join()
|
| 95 |
st.success("🎉 All analyses completed!") # Final success message
|
| 96 |
# --- Display Button After Completion ---
|
| 97 |
+
if st.button("View Results"):
|
| 98 |
+
st.switch_page("pages/output.py")
|
| 99 |
|
| 100 |
|
| 101 |
|
pages/output.py
CHANGED
|
@@ -4,6 +4,27 @@ import streamlit as st
|
|
| 4 |
import time
|
| 5 |
|
| 6 |
def display_outputs():
|
| 7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
display_outputs()
|
|
|
|
| 4 |
import time
|
| 5 |
|
| 6 |
def display_outputs():
|
| 7 |
+
client_name = "RMX Creatives"
|
| 8 |
+
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
|
| 9 |
+
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
|
| 10 |
+
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."""
|
| 11 |
+
|
| 12 |
+
# (off_page_thread)
|
| 13 |
+
# (on_page_thread)
|
| 14 |
+
# (website_and_tools_thread)
|
| 15 |
+
# (seo_thread)
|
| 16 |
+
# (social_media_thread)
|
| 17 |
+
st.markdown("## Digital Marketing Audit")
|
| 18 |
+
st.markdown(f"### {client_name}")
|
| 19 |
+
|
| 20 |
+
st.markdown("## DIGITAL FOOTPRINT OVERVIEW")
|
| 21 |
+
st.markdown(f"{overview}")
|
| 22 |
|
| 23 |
+
st.markdown("## WEBSITE AND TOOLS")
|
| 24 |
+
st.markdown(f"""In today’s digital age, scaling a business is simply impossible without a website. Websites primarily serve as the center for all online conversions, which makes it equally important to guarantee that all pages are optimised to educate all traffic about the brand and ultimately to usher them into conversion. \n
|
| 25 |
+
In line with this, we have looked into the technology used by **{client_name}** as well as the different digital channels currently in place to see how they are structured and how they are performing.""")
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
if st.button("Back to Dashboard"):
|
| 29 |
+
st.switch_page("pages/home.py")
|
| 30 |
display_outputs()
|