Spaces:
Runtime error
Runtime error
File size: 1,247 Bytes
732fdf3 122cbad d240045 122cbad 673114e 122cbad d45c3dc 122cbad d45c3dc 122cbad d45c3dc 647f25b fdd79a3 647f25b fdd79a3 647f25b fdd79a3 647f25b fdd79a3 647f25b fb4a63f 0feaf78 d240045 8a52da0 9ee63d4 fb4a63f d240045 |
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 35 36 37 38 |
import streamlit as st
st.markdown(""" <style> .font {
font-size:50px ; font-family: "Helvetica"; color: #FF9633;}
</style> """, unsafe_allow_html=True)
st.markdown('<p class="font">Now anyone can be a content marketer!</p>', unsafe_allow_html=True)
st.markdown('#')
st.subheader("Don't you wish there was a faster way to summarise your news articles and share it up onto your favourite social media platforms.")
st.markdown('##')
st.markdown(""" #### LorSor helps you through a simple 3 stage process.
Step 1: Copy and paste the complete article text in here
(*Coming soon* - Just paste the article URL)
Step 2: Evaluate the generated summary and make minor edits as required
Step 3: Copy and paste the summary when posting the article link to your social media
(*Coming soon* - Login to social media and schedule your post and we'll automate the process)
Kick back and think about what you're going to do with all the time that you've saved!
Send any feedback to [us](mailto:[email protected]) """)
col1, col2 = st.columns(2)
with col1:
col1.header("Step 1:")
x = st.text_area('Paste the full article text to summarize here...')
st.button("Summarize this")
col2.write("This is col2")
|