Update app.py
Browse files
app.py
CHANGED
@@ -24,10 +24,12 @@ selected_tone = st.selectbox("Tone", tone_options)
|
|
24 |
|
25 |
# Buttons for message type
|
26 |
st.subheader("Select Message Type:")
|
27 |
-
col1, col2 = st.columns(
|
28 |
with col1:
|
29 |
linkedin_invite = st.button("LinkedIn Invite")
|
30 |
with col2:
|
31 |
email_invite = st.button("Email Invite")
|
|
|
|
|
32 |
|
33 |
|
|
|
24 |
|
25 |
# Buttons for message type
|
26 |
st.subheader("Select Message Type:")
|
27 |
+
col1, col2, col3 = st.columns(3)
|
28 |
with col1:
|
29 |
linkedin_invite = st.button("LinkedIn Invite")
|
30 |
with col2:
|
31 |
email_invite = st.button("Email Invite")
|
32 |
+
with col3:
|
33 |
+
whatsapp_invite = st.button("Whatsapp Invite")
|
34 |
|
35 |
|