Skip to content

Commit 1494716

Browse files
committed
Setting availability
1 parent 62d247f commit 1494716

File tree

4 files changed

+46
-22
lines changed

4 files changed

+46
-22
lines changed

src/assets/scss/_alert.scss

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.alert {
2+
padding: 10px;
3+
color: #721c24;
4+
background-color: #f8d7da;
5+
border-bottom: 1px solid #f5c6cb;
6+
text-align: center;
7+
}

src/assets/scss/style.scss

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
@import '../../../node_modules/node-normalize-scss/_normalize.scss';
22
@import 'vars';
3+
@import 'alert';
34
@import 'header';
45
@import 'frontpage';
56
@import 'post';

src/layouts/index.js

+24-19
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,30 @@ import { favicon } from '../assets/img';
77
import '../assets/scss/style.scss';
88

99
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 &apos;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>
2934
</div>
3035
);
3136

src/pages/index.js

+14-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,16 @@ const IndexPage = ({ data }) => (
1717
<h1 className="title">
1818
<span className="title-passive">I am</span> Lasse
1919
</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>
2130
<ul className="links">
2231
<li>
2332
<img alt="" src={phone} />
@@ -55,9 +64,11 @@ const IndexPage = ({ data }) => (
5564
maintainable). I welcome challenges and the possibility to get to know new technologies and people.
5665
</p>
5766
<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.
6070
</p>
71+
<p>I prefer to work on site with the clients and team.</p>
6172
</div>
6273
<div>
6374
<h2>Technologies</h2>

0 commit comments

Comments
 (0)