forked from foxpcteam/AI-Marketer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.py
34 lines (28 loc) · 1.54 KB
/
home.py
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
import streamlit as st
from util import p_title
import requests
import streamlit.components.v1 as components
#########
#SIDEBAR
########
def home(nav):
if nav== '🏠Homepage':
st.title('</>AI Marketer - No Code Marketing Analytics by AI')
st.subheader('Analyze your marketing data by AI & ML algorithms without a single-line of code.')
st.write('With our cutting-edge AI, we give you answer in numbers, text, tables, and charts.')
st.write('You can use AI to handle your marketing task now !')
st.text('')
st.write('If you love the project like I do ... ')
components.html("""
<script type="text/javascript" src="https://cdnjs.buymeacoffee.com/1.0.0/button.prod.min.js" data-name="bmc-button" data-slug="catyung" data-color="#5F7FFF" data-emoji="🍕" data-font="Poppins" data-text="Buy me a pizza" data-outline-color="#000000" data-font-color="#ffffff" data-coffee-color="#FFDD00" ></script>
""")
st.text('')
st.text('')
st.image('./howitworks.png')
st.image('./modules1.png')
st.image('./modules2.png')
st.text('')
st.write('If you love the project like I do ... ')
components.html("""
<script type="text/javascript" src="https://cdnjs.buymeacoffee.com/1.0.0/button.prod.min.js" data-name="bmc-button" data-slug="catyung" data-color="#5F7FFF" data-emoji="🍕" data-font="Poppins" data-text="Buy me a pizza" data-outline-color="#000000" data-font-color="#ffffff" data-coffee-color="#FFDD00" ></script>
""")