eagle0504 commited on
Commit
55a97df
β€’
1 Parent(s): 5b7e48b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +22 -19
app.py CHANGED
@@ -58,13 +58,13 @@ with st.sidebar:
58
  """)
59
 
60
  # Example:
61
- st.success("Example: Who is Yiqiao Yin?")
62
- st.success("Example: What did Yiqiao do at graduate school?")
63
- st.success("Example: Where to find published papers by Yiqiao?")
64
- st.success("Example: What is Yiqiao's view on AI?")
65
- # st.success("Example: What are some online links by Yiqiao I can read about?")
66
- # st.success("Example: What is Yiqiao's view on stock market?")
67
-
68
 
69
  # Add a button to clear the session state
70
  if st.button("Clear Session"):
@@ -72,19 +72,22 @@ with st.sidebar:
72
  st.experimental_rerun()
73
 
74
  # Consulting
75
- stripe_payment_link_consulting = os.environ["STRIPE_PAYMENT_LINK_CONSULTING"]
76
- st.markdown(
77
- f"""
78
- Want website with copilot like mine? βš–οΈ Schedule an appointment with me [here]({stripe_payment_link_consulting})
79
- """
80
- )
 
 
81
  # Donation
82
- stripe_payment_link = os.environ["STRIPE_PAYMENT_LINK"]
83
- st.markdown(
84
- f"""
85
- Want to support me? πŸ˜„ Click here using this [link]({stripe_payment_link}).
86
- """
87
- )
 
88
 
89
  # Credit:
90
  current_year = current_year() # This will print the current year
 
58
  """)
59
 
60
  # Example:
61
+ with st.expander("Examples"):
62
+ st.success("Example: Who is Yiqiao Yin?")
63
+ st.success("Example: What did Yiqiao do at graduate school?")
64
+ st.success("Example: Where to find published papers by Yiqiao?")
65
+ st.success("Example: What is Yiqiao's view on AI?")
66
+ st.success("Example: What are some online links by Yiqiao I can read about?")
67
+ st.success("Example: What is Yiqiao's view on stock market?")
68
 
69
  # Add a button to clear the session state
70
  if st.button("Clear Session"):
 
72
  st.experimental_rerun()
73
 
74
  # Consulting
75
+ with st.expander("AI Consulting"):
76
+ stripe_payment_link_consulting = os.environ["STRIPE_PAYMENT_LINK_CONSULTING"]
77
+ st.markdown(
78
+ f"""
79
+ Want website with copilot like mine? βš–οΈ Schedule an appointment with me [here]({stripe_payment_link_consulting})
80
+ """
81
+ )
82
+
83
  # Donation
84
+ with st.expander("Donation"):
85
+ stripe_payment_link = os.environ["STRIPE_PAYMENT_LINK"]
86
+ st.markdown(
87
+ f"""
88
+ Want to support me? πŸ˜„ Click here using this [link]({stripe_payment_link}).
89
+ """
90
+ )
91
 
92
  # Credit:
93
  current_year = current_year() # This will print the current year