hruday96 commited on
Commit
9d8232e
·
verified ·
1 Parent(s): 148f39a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
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(2)
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