wip
Seto Elkahfi committed
Mar 6, 2019 at 19:02 UTC
01f0ae64daebcaa13fb26242f0868890753507a3
2 files changed
+4
-1
src/components/Firebase/firebase.js
+3
@@ -20,6 +20,9 @@
20
21
rootRef = () => this.db.ref('setoelkahfi-web-id').child(this.language);
22
whoAmIRef = () => this.rootRef().child('i am');
23
+ aboutRef = () => this.rootRef().child('about');
24
+ cvRef = () => this.rootRef().child('cv');
25
+ contactRef = () => this.rootRef().child('contact');
26
}
27
28
export default Firebase;
src/components/Home.js
+1
-1
@@ -73,7 +73,7 @@ class Home extends Component {
73
<FormattedMessage id="home.title"
74
defaultMessage="Hello, my name is {name}"
75
description="Welcome message"
76
- values={{ name: 'Seto Elkahi' }}/>
76
+ values={{ name: 'Seto Elkahfi' }}/>
77
</h1>
78
<p style={this.state.pStyle}>
79
<FormattedMessage id="home.iam"