Skip to content

Commit ded1ace

Browse files
committed
Changed headline
1 parent 7dde735 commit ded1ace

1 file changed

Lines changed: 19 additions & 14 deletions

File tree

src/pages/index.js

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import React from 'react'
2-
import PropTypes from 'prop-types'
3-
import { Link, graphql } from 'gatsby'
4-
import styled from 'styled-components'
1+
import React from "react";
2+
import PropTypes from "prop-types";
3+
import { Link, graphql } from "gatsby";
4+
import styled from "styled-components";
55

6-
import { Layout, Article, Wrapper, Button, SectionTitle } from '../components'
6+
import { Layout, Article, Wrapper, Button, SectionTitle } from "../components";
77

88
const Content = styled.div`
99
grid-column: 2;
@@ -17,7 +17,7 @@ const Content = styled.div`
1717
padding: 2rem 1.5rem;
1818
}
1919
overflow: hidden;
20-
`
20+
`;
2121

2222
const Hero = styled.div`
2323
grid-column: 2;
@@ -39,7 +39,7 @@ const Hero = styled.div`
3939
font-size: 1.25rem;
4040
}
4141
}
42-
`
42+
`;
4343

4444
const IndexPage = ({
4545
data: {
@@ -51,12 +51,17 @@ const IndexPage = ({
5151
<Hero>
5252
<h1>Hi.</h1>
5353
<p>
54-
I&apos;m James Faeldon a software engineer and tech entrepreneur living in Manila. And this blog is my
55-
personal commitment to working more in the open.
54+
I&apos;m James Faeldon a software engineer, tech entrepreneur living
55+
in Manila.
5656
</p>
5757
<Link to="/contact">
5858
<Button big>
59-
<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg">
59+
<svg
60+
width="1792"
61+
height="1792"
62+
viewBox="0 0 1792 1792"
63+
xmlns="http://www.w3.org/2000/svg"
64+
>
6065
<path d="M1764 11q33 24 27 64l-256 1536q-5 29-32 45-14 8-31 8-11 0-24-5l-453-185-242 295q-18 23-49 23-13 0-22-4-19-7-30.5-23.5t-11.5-36.5v-349l864-1059-1069 925-395-162q-37-14-40-55-2-40 32-59l1664-960q15-9 32-9 20 0 36 11z" />
6166
</svg>
6267
Contact
@@ -79,17 +84,17 @@ const IndexPage = ({
7984
</Content>
8085
</Wrapper>
8186
</Layout>
82-
)
87+
);
8388

84-
export default IndexPage
89+
export default IndexPage;
8590

8691
IndexPage.propTypes = {
8792
data: PropTypes.shape({
8893
allMdx: PropTypes.shape({
8994
nodes: PropTypes.array.isRequired,
9095
}),
9196
}).isRequired,
92-
}
97+
};
9398

9499
export const IndexQuery = graphql`
95100
query IndexQuery {
@@ -108,4 +113,4 @@ export const IndexQuery = graphql`
108113
}
109114
}
110115
}
111-
`
116+
`;

0 commit comments

Comments
 (0)