-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProponent.py
More file actions
108 lines (86 loc) · 5.68 KB
/
Copy pathProponent.py
File metadata and controls
108 lines (86 loc) · 5.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
import time
import streamlit as st
from assets.code.utils import check_password, set_page_config, get_themed_logo
import streamlit as st
# Welcome Page
def intro_page():
## Introduction
col1,col2 = st.columns([1,1])
with col1:
st.container(height=100,border=False)
st.header("Welcome to Proponent!")
st.write("Read this guide to learn how Proponent can help you create personalized, product-led buying experiences for your customers.")
if st.button("Done reading? Click here to get started"):
st.switch_page("pages/1_Sales_Enablement.py")
with col2:
st.image("assets/images/kelly-kapoor.svg", use_column_width=True)
# ## Step by Step Guide
# st.container(height=30,border=False)
# st.markdown("### Quick Start Guide")
# st.write("In this guide we'll assume a role of a Sales Manager at a SaaS company. Let's say you are interacting with a customer within your CRM tool and you want to create personalized sales enablement content for them. Here's how you can do it using Proponent:")
# with st.expander("Step 1: Select the customer name you are interacting with from the dropdown menu"):
# st.write("Proponent uses advanced NLU to analyze the customer's unique pain points and generate tailored product recommendations. Review and select the most relevant recommendations from Proponent's suggestions.")
# # st.image("assets/images/kelly-kapoor.svg", use_column_width=True)
# with st.expander("Step 2: Upload a Customer Interaction snippet or any product query and click 'Get Recommendations'"):
# st.write("Upload a customer interaction snippet, You can upload a Zoom call transcript, email, chat log, or any other text-based interaction with the customer. You can also type in a product query to get recommendations.")
# # st.image("assets/images/kelly-kapoor.svg", use_column_width=True)
# with st.expander("Step 3: Review and shortlist recommendations that you want to include in the sales enablement content"):
# st.write("Proponent uses advanced NLU to analyze the customer's unique pain points and generate tailored product recommendations. Review and select the most relevant recommendations from Proponent's suggestions.")
# # st.image("assets/images/kelly-kapoor.svg", use_column_width=True)
# with st.expander("Step 4: Click 'Generate Content' to create personalized sales enablement content for the customer!"):
# st.write("Automatically create personalized sales enablement content like presentations, emails, and demo videos. Share the content with your customer and have a meaningful, product-led conversation that resonates with their needs.")
# # st.image("assets/images/kelly-kapoor.svg", use_column_width=True)
# with st.expander("Step 5: Get Insights into Customer Pain Points and Preferences in the Analytics Dashboard"):
# st.write("Gain valuable insights into customer pain points and preferences by analyzing Proponent's usage logs. Use these insights to refine your messaging and product recommendations.")
# # st.image("assets/images/kelly-kapoor.svg", use_column_width=True)
## What Can You Do with Proponent?
st.container(height=30,border=False)
st.markdown("### What Can You Do with Proponent?")
col1, col2, col3 = st.columns(3)
with col1:
with st.container(border=True, height=200):
st.markdown("##### Product Recommendations")
st.write("Generate highly relevant product recommendations based on customer interactions and preferences.")
with col2:
with st.container(border=True, height=200):
st.markdown("##### Sales Deck")
st.write("Create a customized sales deck tailored to each customer's specific needs and pain points.")
with col3:
with st.container(border=True, height=200):
st.markdown("##### Landing Page")
st.write("Automatically generate a personalized landing page highlighting the most relevant features and benefits.")
col4, col5, col6 = st.columns(3)
with col4:
with st.container(border=True, height=200):
st.markdown("##### Product Demo Video")
st.write("Showcase your product's capabilities with an interactive demo that focuses on the customer's key interests.")
with col5:
with st.container(border=True, height=200):
st.markdown("##### Email & Chat Templates")
st.write("Craft compelling email templates that effectively communicate the value proposition to the customer.")
with col6:
with st.container(border=True, height=200):
st.markdown("##### Customer Persona Insights")
st.write("Gain insights into the effectiveness of your personalized approach with a comprehensive analytics dashboard.")
# Contact Us
st.container(height=30,border=False)
st.markdown("### Contact Us")
st.write("For any questions or assistance, please reach out through the following channels:")
col1, col2, col3, col4 = st.columns([.8,.9,1,5])
col1.link_button(":email: Email", "mailto:prashant@yourproponent.com")
col2.link_button(":globe_with_meridians: Website", "https://yourproponent.com")
col3.link_button(":link: LinkedIn", "https://www.linkedin.com/company/yourproponent")
# Setup
set_page_config(page_title="Proponent", layout="wide",initial_sidebar_state="collapsed")
# # Check password
# col1,col2,col3 = st.columns([1,1.5,1])
# with col2:
# col2a, col2b, col2c = st.columns([1,3,1])
# if not check_password():
# st.stop()
# # else:
# # st.switch_page("pages/1_Sales_Enablement.py")
# Welcome Page
col1,col2,col3 = st.columns([1,6,1])
with col2:
intro_page()