Spaces:
Runtime error
Runtime error
Update views/about.py
Browse files- views/about.py +11 -12
views/about.py
CHANGED
@@ -10,24 +10,23 @@ class About:
|
|
10 |
def view(self, model):
|
11 |
# st.title(model.pageTitle)
|
12 |
|
13 |
-
st.write(
|
14 |
-
|
15 |
|
16 |
col1, col2, col3 = st.columns(3)
|
17 |
col2.image(Image.open('assets/ab.png'))
|
18 |
|
19 |
-
st.markdown("<h1 style='text-align: center; color: black; font-weight: bold;'>Andrej Baranovskij, Founder Katana ML</h1>",
|
20 |
-
|
21 |
|
22 |
st.info(
|
23 |
-
'
|
24 |
-
'a platform for data science and machine learning.')
|
25 |
|
26 |
icon_size = 20
|
27 |
|
28 |
-
st_button('youtube', 'https://www.youtube.com/@AndrejBaranovskij', 'Andrej Baranovskij YouTube channel', icon_size)
|
29 |
-
st_button('github', 'https://github.com/katanaml/sparrow', 'Sparrow GitHub', icon_size)
|
30 |
-
st_button('twitter', 'https://twitter.com/andrejusb', 'Follow me on Twitter', icon_size)
|
31 |
-
st_button('medium', 'https://andrejusb.medium.com', 'Read my Blogs on Medium', icon_size)
|
32 |
-
st_button('linkedin', 'https://www.linkedin.com/in/andrej-baranovskij/', 'Follow me on LinkedIn', icon_size)
|
33 |
-
st_button('', 'https://katanaml.io', 'Katana ML', icon_size)
|
|
|
10 |
def view(self, model):
|
11 |
# st.title(model.pageTitle)
|
12 |
|
13 |
+
# st.write(
|
14 |
+
# "[![Star](https://img.shields.io/github/stars/katanaml/sparrow.svg?logo=github&style=social)](https://github.com/katanaml/sparrow)")
|
15 |
|
16 |
col1, col2, col3 = st.columns(3)
|
17 |
col2.image(Image.open('assets/ab.png'))
|
18 |
|
19 |
+
# st.markdown("<h1 style='text-align: center; color: black; font-weight: bold;'>Andrej Baranovskij, Founder Katana ML</h1>",
|
20 |
+
# unsafe_allow_html=True)
|
21 |
|
22 |
st.info(
|
23 |
+
'Tool for data extraction from PDFs, images, and other documents.')
|
|
|
24 |
|
25 |
icon_size = 20
|
26 |
|
27 |
+
# st_button('youtube', 'https://www.youtube.com/@AndrejBaranovskij', 'Andrej Baranovskij YouTube channel', icon_size)
|
28 |
+
# st_button('github', 'https://github.com/katanaml/sparrow', 'Sparrow GitHub', icon_size)
|
29 |
+
# st_button('twitter', 'https://twitter.com/andrejusb', 'Follow me on Twitter', icon_size)
|
30 |
+
# st_button('medium', 'https://andrejusb.medium.com', 'Read my Blogs on Medium', icon_size)
|
31 |
+
# st_button('linkedin', 'https://www.linkedin.com/in/andrej-baranovskij/', 'Follow me on LinkedIn', icon_size)
|
32 |
+
# st_button('', 'https://katanaml.io', 'Katana ML', icon_size)
|