diff --git a/README.md b/README.md
index e5e6a72f..bfa64b09 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,11 @@
# Utopia UI [](https://www.npmjs.com/package/utopia-ui)
-Reuseable React Components to build mapping apps for all kinds of communities with focus of real life action, local connection and positiv impact.
+Reuseable React Components to build mapping apps with focus of real life action, local connection and positiv impact.
Check [utopia-os.org](https://utopia-os.org) for more information
-*This Library is in early alpha stage. You are very welcome to participate in the development*
+*In early 2021, we developed a Django-based Proof of Concept, which can be found @ [new.docutopia.de](https://new.docutopia.de). This map can be edited freely you can register to create an account and place them on the map.*
-*A Django-based Proof of Concept can be found @ [new.docutopia.de](https://new.docutopia.de). This map can be edited freely you can register to create an account and place them on the map.*
-
-Utopia UI is the approach to create a Open Source Library of JavaScript Components which should useful maps and apps to all kind of projects and communities.
+Utopia UI is the approach to create a Open Source Library of JavaScript Components which should bring useful maps and apps to all kind of projects and communities.
## Map UI Component
@@ -91,9 +89,9 @@ const tags = [
`width` | `string` |`'100vw'` | No | width of the map
`center` | `LatLng` |`[50.6, 9.5]` | No | initial map position
`zoom` | `number` |`10` | No | initial zoom level
- `places` | [`Item[]`](https://utopia-os.org/docs/utopia-ui/map-components/item)| `[]` | No | Array with Items
- `events` | [`Item[]`](https://utopia-os.org/docs/utopia-ui/map-components/item)| `[]` | No | Array with Items
- `tags` | [`Tag[]`](https://utopia-os.org/docs/utopia-ui/map-components/tag) | `[]` | No | Array with Tags
+ `places` | [`Item[]`](https://utopia-os.org/docs/utopia-ui/map-components/item)| `[]` | No | Array with Items
+ `events` | [`Item[]`](https://utopia-os.org/docs/utopia-ui/map-components/item)| `[]` | No | Array with Items
+ `tags` | [`Tag[]`](https://utopia-os.org/docs/utopia-ui/map-components/tag) | `[]` | No | Array with Tags
## Coming Soon
@@ -107,6 +105,8 @@ const tags = [
## Join the community
- *We are looking for Web Developer, UX Designer, Community Manager, Visionaries, Artists, etc. who like to support this Vision.*
+*This Library is in early alpha stage. You are very welcome to participate in the development*
+
+*We are looking for Web Developer, UX Designer, Community Manager, Visionaries, Artists, etc. who like to support this Vision.*
[https://t.me/utopiaOS](https://t.me/utopiaOS)
\ No newline at end of file
diff --git a/src/Components/Map/MarkerPopup.tsx b/src/Components/Map/MarkerPopup.tsx
deleted file mode 100644
index 22d3b200..00000000
--- a/src/Components/Map/MarkerPopup.tsx
+++ /dev/null
@@ -1,71 +0,0 @@
-import * as React from 'react'
-import { Popup } from 'react-leaflet'
-import { Item, Tag } from '../../types'
-
-export interface MarkerPopupProps {
- item: Item,
- tags: Tag[]
-}
-
-const MarkerPopup = (props: MarkerPopupProps) => {
- const item: Item = props.item;
- const tags: Tag[] = props.tags;
-
- return (
-
- {item.name}
- {item.start && item.end &&
-