import streamlit as st st.markdown(""" """, unsafe_allow_html=True) st.markdown('

Now anyone can be a content marketer!

', 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:lorsorlah@gmail.com) """) 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") with col2: col2.header("Step 2:") summary = "Lorem Ipsum is a long and boring piece of old latin text. What it means i have no idea" y = st.text_area("Here is the completed summary for you to edit", summary) st.button("Submit edits")