Spaces:
Runtime error
Runtime error
File size: 1,384 Bytes
e79ac05 adc8970 e79ac05 adc8970 e79ac05 adc8970 e79ac05 adc8970 |
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 |
import streamlit as st
from PIL import Image
from tools.st_functions import st_button
class About:
class Model:
pageTitle = "About"
def view(self, model):
# st.title(model.pageTitle)
# st.write(
# "[](https://github.com/katanaml/sparrow)")
col1, col2, col3 = st.columns(3)
col2.image(Image.open('assets/ab.png'))
# st.markdown("<h1 style='text-align: center; color: black; font-weight: bold;'>Andrej Baranovskij, Founder Katana ML</h1>",
# unsafe_allow_html=True)
st.info(
'Tool for data extraction from PDFs, images, and other documents.')
icon_size = 20
# st_button('youtube', 'https://www.youtube.com/@AndrejBaranovskij', 'Andrej Baranovskij YouTube channel', icon_size)
# st_button('github', 'https://github.com/katanaml/sparrow', 'Sparrow GitHub', icon_size)
# st_button('twitter', 'https://twitter.com/andrejusb', 'Follow me on Twitter', icon_size)
# st_button('medium', 'https://andrejusb.medium.com', 'Read my Blogs on Medium', icon_size)
# st_button('linkedin', 'https://www.linkedin.com/in/andrej-baranovskij/', 'Follow me on LinkedIn', icon_size)
# st_button('', 'https://katanaml.io', 'Katana ML', icon_size)
|