diff --git a/src/landscape/components/LandscapeMapEmbed.js b/src/landscape/components/LandscapeMapEmbed.js
index 1caaf7e38..860d9d2d8 100644
--- a/src/landscape/components/LandscapeMapEmbed.js
+++ b/src/landscape/components/LandscapeMapEmbed.js
@@ -20,18 +20,28 @@ import { useSelector } from 'react-redux';
import { useFetchData } from 'terraso-client-shared/store/utils';
import { Typography } from '@mui/material';
+import ExternalLink from 'common/components/ExternalLink';
import { useDocumentTitle } from 'common/document';
import PageLoader from 'layout/PageLoader';
import { fetchLandscapes } from 'landscape/landscapeSlice';
import LandscapeListMap from './LandscapeListMap';
-const LandscapeDescriptionPopup = ({ landscape }) => (
- <>
- {landscape.data.name}
- {landscape.data.description}
- >
-);
+const LandscapeDescriptionPopup = ({ landscape }) => {
+ const { t } = useTranslation();
+
+ return (
+ <>
+ {landscape.data.name}
+ {landscape.data.description}
+
+
+ {t('landscape.map_profile_link_text')}
+
+
+ >
+ );
+};
const LandscapeMapEmbed = () => {
const { t } = useTranslation();