File tree 4 files changed +46
-22
lines changed
4 files changed +46
-22
lines changed Original file line number Diff line number Diff line change
1
+ .alert {
2
+ padding : 10px ;
3
+ color : #721c24 ;
4
+ background-color : #f8d7da ;
5
+ border-bottom : 1px solid #f5c6cb ;
6
+ text-align : center ;
7
+ }
Original file line number Diff line number Diff line change 1
1
@import ' ../../../node_modules/node-normalize-scss/_normalize.scss' ;
2
2
@import ' vars' ;
3
+ @import ' alert' ;
3
4
@import ' header' ;
4
5
@import ' frontpage' ;
5
6
@import ' post' ;
Original file line number Diff line number Diff line change @@ -7,25 +7,30 @@ import { favicon } from '../assets/img';
7
7
import '../assets/scss/style.scss' ;
8
8
9
9
const Layout = ( { children, location } ) => (
10
- < div className = "wrapper" >
11
- < Helmet
12
- link = { [
13
- {
14
- name : 'alternate' ,
15
- type : 'application/rss+xml' ,
16
- title : 'rss' ,
17
- href : '/rss.xml' ,
18
- } ,
19
- {
20
- rel : 'icon' ,
21
- type : 'image/png' ,
22
- href : favicon ,
23
- } ,
24
- ] }
25
- />
26
- < Header location = { location } />
27
- < div > { children ( ) } </ div >
28
- < Footer />
10
+ < div >
11
+ < div className = "alert" >
12
+ NOT AVAILABLE before: < b > 4th of November '19</ b > .
13
+ </ div >
14
+ < div className = "wrapper" >
15
+ < Helmet
16
+ link = { [
17
+ {
18
+ name : 'alternate' ,
19
+ type : 'application/rss+xml' ,
20
+ title : 'rss' ,
21
+ href : '/rss.xml' ,
22
+ } ,
23
+ {
24
+ rel : 'icon' ,
25
+ type : 'image/png' ,
26
+ href : favicon ,
27
+ } ,
28
+ ] }
29
+ />
30
+ < Header location = { location } />
31
+ < div > { children ( ) } </ div >
32
+ < Footer />
33
+ </ div >
29
34
</ div >
30
35
) ;
31
36
Original file line number Diff line number Diff line change @@ -17,7 +17,16 @@ const IndexPage = ({ data }) => (
17
17
< h1 className = "title" >
18
18
< span className = "title-passive" > I am</ span > Lasse
19
19
</ h1 >
20
- < h2 className = "sub" > Fullstack developer in Berlin seeking interesting projects</ h2 >
20
+ < h2 className = "sub" >
21
+ Experienced Fullstack developer seeking challenging projects{ ' ' }
22
+ < small >
23
+ (
24
+ < span role = "img" aria-label = "Location pin" >
25
+ 📍
26
+ </ span > { ' ' }
27
+ Berlin)
28
+ </ small >
29
+ </ h2 >
21
30
< ul className = "links" >
22
31
< li >
23
32
< img alt = "" src = { phone } />
@@ -55,9 +64,11 @@ const IndexPage = ({ data }) => (
55
64
maintainable). I welcome challenges and the possibility to get to know new technologies and people.
56
65
</ p >
57
66
< p >
58
- I speak < img alt = "" src = { denmark } className = "flag" /> Danish, < img alt = "" src = { germany } className = "flag" /> German
59
- and < img alt = "" src = { usa } className = "flag" /> English.
67
+ I speak < img alt = "Danish flag" src = { denmark } className = "flag" /> Danish,{ ' ' }
68
+ < img alt = "German flag" src = { germany } className = "flag" /> German and{ ' ' }
69
+ < img alt = "English flag" src = { usa } className = "flag" /> English.
60
70
</ p >
71
+ < p > I prefer to work on site with the clients and team.</ p >
61
72
</ div >
62
73
< div >
63
74
< h2 > Technologies</ h2 >
You can’t perform that action at this time.
0 commit comments