Spaces:
Running
Running
File size: 594 Bytes
a1a974e b5296bf a1a974e b5296bf a1a974e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import solara
@solara.component
def Page():
with solara.Column(align="center"):
markdown = """
## A Solara Web App for Visualizing [Maxar Open Data](https://www.maxar.com/open-data)
### Introduction
**A collection of [Solara](https://github.com/widgetti/solara) web apps for geospatial applications.**
- Web App: <https://giswqs-solara-maxar.hf.space>
- GitHub: <https://github.com/opengeos/solara-maxar>
- Hugging Face: <https://huggingface.co/spaces/giswqs/solara-maxar>
"""
solara.Markdown(markdown)
|