diff --git a/client/main.html b/client/main.html
index 5b43708..7463f76 100644
--- a/client/main.html
+++ b/client/main.html
@@ -1,25 +1,13 @@
+
-
-
-
-
-
-
-
-
-
diff --git a/client/main.js b/client/main.js
index e49f5d7..1412f30 100644
--- a/client/main.js
+++ b/client/main.js
@@ -1,3 +1 @@
import '../imports/startup/client';
-/* import '../node_modules/daemonite-material/js/material.min.js';
-import '../node_modules/daemonite-material/css/material.css'; */
diff --git a/imports/ui/pages/Fires/Fires.js b/imports/ui/pages/Fires/Fires.js
index d8e37b9..4cf0e06 100644
--- a/imports/ui/pages/Fires/Fires.js
+++ b/imports/ui/pages/Fires/Fires.js
@@ -9,6 +9,7 @@ import { translate, Trans } from 'react-i18next';
import { FormGroup } from 'react-bootstrap';
import { Meteor } from 'meteor/meteor';
import { Bert } from 'meteor/themeteorchef:bert';
+import { Helmet } from 'react-helmet';
import { Map, Circle } from 'react-leaflet';
import Blaze from 'meteor/gadicc:blaze-react-component';
import DefMapLayers from '/imports/ui/components/Maps/DefMapLayers';
@@ -58,16 +59,19 @@ class Fire extends React.Component {
if (fire && fire.when) {
this.dateLongFormat = dateLongFormat(fire.when);
}
+ const title = fire.address ?
+ t('Información adicional sobre fuego detectado en {{where}} el {{when}}', { where: fire.address, when: this.dateLongFormat }) :
+ t('Información adicional sobre fuego detectado el {{when}}', { when: this.dateLongFormat });
return (fire ? (
+
+
+ {t('AppName')}: {t('Información adicional sobre fuego')}
+
+
{!loading &&
-
- {fire.address ?
- t('Información adicional sobre fuego detectado en {{where}} el {{when}}', { where: fire.address, when: this.dateLongFormat }) :
- t('Información adicional sobre fuego detectado el {{when}}', { when: this.dateLongFormat })}
-
-
+ {title}