Yunus Serhat Bıçakçı commited on
Commit
54d06fb
1 Parent(s): 8f0ec60
Files changed (1) hide show
  1. pages/00_home.py +18 -10
pages/00_home.py CHANGED
@@ -2,19 +2,27 @@ import solara
2
 
3
  @solara.component
4
  def Page():
 
 
 
 
 
 
 
 
 
 
 
 
5
 
6
- markdown = """
7
- ## Solara for Geospatial Applications
8
-
9
  ### Introduction
10
 
11
- **A collection of [Solara](https://github.com/widgetti/solara) web apps for geospatial applications.**
12
-
13
- Just a proof-of-concept for now. Not all features are working yet. More features will be added in the future. Click on the menu above to see the other pages.
 
 
14
 
15
- - Web App: <https://giswqs-solara-geospatial.hf.space>
16
- - GitHub: <https://github.com/opengeos/solara-geospatial>
17
- - Hugging Face: <https://huggingface.co/spaces/giswqs/solara-geospatial>
18
 
19
  ### Demos
20
 
@@ -22,4 +30,4 @@ def Page():
22
 
23
  """
24
 
25
- solara.Markdown(markdown)
 
2
 
3
  @solara.component
4
  def Page():
5
+ with solara.Columns([1, 4]):
6
+
7
+ contact = """
8
+ ### Application Information
9
+ - Web App URL: <https://interactive-crime-map.hf.space/>
10
+ - HuggingFace repository: <https://huggingface.co/spaces/interactive-crime/map/tree/main>
11
+ ### Contact Information
12
+ Yunus Serhat Bıçakçı at [yunusserhat.com](https://yunusserhat.com) | [GitHub](https://github.com/yunusserhat) | [Twitter](https://twitter.com/yunusserhat) | [LinkedIn](https://www.linkedin.com/in/yunusserhat)
13
+ """
14
+ solara.Markdown(contact)
15
+ markdown = """
16
+ # Interactive Crime Map Application
17
 
 
 
 
18
  ### Introduction
19
 
20
+ **This interactive crime map apps created using [Solara](https://github.com/widgetti/solara), [Docker](https://www.docker.com/) and open-source libraries and repositories, such as [leafmap](https://leafmap.org), [geopandas](https://geopandas.org), [solara-geospatial](https://huggingface.co/spaces/giswqs/solara-geospatial) ,and [ipyleaflet](https://github.com/jupyter-widgets/ipyleaflet).**
21
+
22
+ More features will be added in the future.
23
+
24
+ **Click on the menu above to see the other pages.**
25
 
 
 
 
26
 
27
  ### Demos
28
 
 
30
 
31
  """
32
 
33
+ solara.Markdown(markdown)