Update app.py
Browse files
app.py
CHANGED
@@ -86,9 +86,15 @@ st.set_page_config(page_title="PitchPal: Your Friendly Copy Assistant",
|
|
86 |
page_icon='💻',
|
87 |
layout='centered',
|
88 |
initial_sidebar_state='collapsed')
|
89 |
-
st.title("PitchPal
|
90 |
-
st.subheader("
|
91 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
|
93 |
form_input = st.text_area('Enter the name of the product or service you want to promote: ', 'PlayStation 6', height=100)
|
94 |
st.write(f'You wrote {len(form_input)} characters.')
|
|
|
86 |
page_icon='💻',
|
87 |
layout='centered',
|
88 |
initial_sidebar_state='collapsed')
|
89 |
+
st.title("PitchPal")
|
90 |
+
st.subheader("Your Friendly Sales Copy Assistant")
|
91 |
+
st.markdown(
|
92 |
+
"""
|
93 |
+
|
94 |
+
|
95 |
+
- by [Lorentz Yeung](https://entzyeung.github.io/portfolio/index.html)
|
96 |
+
"""
|
97 |
+
)
|
98 |
|
99 |
form_input = st.text_area('Enter the name of the product or service you want to promote: ', 'PlayStation 6', height=100)
|
100 |
st.write(f'You wrote {len(form_input)} characters.')
|