Spaces:
No application file
No application file
File size: 1,469 Bytes
e8a20da |
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 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(
'Sparrow is a tool for data extraction from PDFs, images, and other documents. It is a part of Katana ML, '
'a platform for data science and machine learning.')
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)
|