-

-
Pup
+
{props.t('AppName')}
A boilerplate for products.
@@ -19,6 +18,7 @@ const Index = () => (
Need help and want to stay accountable building your product? Check out Clever Beagle.
-);
+ );
+};
-export default Index;
+export default translate([], { wait: true })(Index);
diff --git a/imports/ui/pages/Index/Index.scss b/imports/ui/pages/Index/Index.scss
index 0e397a2..3fb18b4 100644
--- a/imports/ui/pages/Index/Index.scss
+++ b/imports/ui/pages/Index/Index.scss
@@ -3,10 +3,12 @@
.Index {
padding: 20px;
- background: $cb-blue;
+ background: lighten($todos-back1, 75%);
text-align: center;
border-radius: 3px;
- color: #fff;
+ color: $todos-font1;
+ opacity: 0.5;
+ filter: alpha(opacity=50);
img {
width: 100px;
@@ -14,7 +16,9 @@
}
h1 {
- font-size: 28px;
+ font-size: 86px;
+ text-transform: uppercase;
+ font-family: 'Roboto';
}
p {
diff --git a/imports/ui/stylesheets/app.scss b/imports/ui/stylesheets/app.scss
index 21c9469..be7cbf1 100644
--- a/imports/ui/stylesheets/app.scss
+++ b/imports/ui/stylesheets/app.scss
@@ -1,3 +1,4 @@
@import './colors';
@import './forms';
@import './bootstrap-overrides';
+@import 'web-fonts';
diff --git a/imports/ui/stylesheets/colors.scss b/imports/ui/stylesheets/colors.scss
index 0e0e2f2..110ea5a 100644
--- a/imports/ui/stylesheets/colors.scss
+++ b/imports/ui/stylesheets/colors.scss
@@ -18,3 +18,8 @@ $cb-blue: #4285F4;
$cb-green: #00D490;
$cb-yellow: #FFCF50;
$cb-red: #DA5847;
+
+$todos-back1: #AC9393;
+$todos-back2: #FFFFFF;
+$todos-font1: #280B0B;
+$todos-font2: #501616;
diff --git a/imports/ui/stylesheets/custom.scss b/imports/ui/stylesheets/custom.scss
new file mode 100644
index 0000000..e69de29
diff --git a/package.json b/package.json
index 5462567..bdeaf69 100644
--- a/package.json
+++ b/package.json
@@ -14,16 +14,22 @@
"core-js": "^2.5.1",
"fs": "0.0.1-security",
"handlebars": "^4.0.10",
+ "i18next": "^10.0.7",
+ "i18next-browser-languagedetector": "^2.1.0",
+ "i18next-localstorage-cache": "^1.1.1",
+ "i18next-xhr-backend": "^1.5.0",
"jquery": "^2.2.4",
"jquery-validation": "^1.17.0",
"juice": "^4.1.1",
"lodash": "^4.17.4",
"meteor-node-stubs": "^0.2.11",
+ "moment": "^2.19.2",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-addons-pure-render-mixin": "^15.6.0",
"react-bootstrap": "^0.31.2",
"react-dom": "^15.6.1",
+ "react-i18next": "^6.1.0",
"react-router-bootstrap": "^0.24.3",
"react-router-dom": "^4.2.2",
"simpl-schema": "^0.3.2"
diff --git a/public/locales/es/common.json b/public/locales/es/common.json
new file mode 100644
index 0000000..710b8df
--- /dev/null
+++ b/public/locales/es/common.json
@@ -0,0 +1,11 @@
+{
+ "AppName": "Tod@s contra el Fuego",
+ "AppNameFull": "¡Tod@s contra el Fuego!",
+ "OrgName": "Comunes",
+ "OrgNameFull": "Asociación Comunes",
+ "Privacidad": "Privacidad",
+ "Términos": "Términos",
+ "de Servicio": "de Servicio",
+ "Política": "Política",
+ "de Privacidad": "de Privacidad"
+}