Skip to content

Commit c9ccd7e

Browse files
committed
chore: readme
1 parent 9c79a64 commit c9ccd7e

File tree

4 files changed

+28
-9
lines changed

4 files changed

+28
-9
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Daniyil Vasylenko
3+
Copyright (c) 2019 - present Daniyil Vasylenko
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,32 @@
22

33
You are welcome to use or reuse this project for your purposes, if you reference the original (this repo).
44

5-
### Tech used
5+
### Run & Build
6+
7+
Development:
8+
9+
```
10+
npm start
11+
```
12+
13+
Production:
14+
15+
```
16+
npm build
17+
npm run serve
18+
```
19+
20+
### Core
621

722
- [Gatsby](https://github.com/gatsbyjs/gatsby)
823
- [React](https://github.com/facebook/react)
24+
- [React-spring](https://github.com/pmndrs/react-spring) for animations
25+
- [Styled Components](https://www.styled-components.com/)
926

1027
### Data
1128

1229
All the website's content is stored in markdown and fetched with [GraphQL](https://graphql.org/)
1330

14-
### Styles
15-
16-
Styling was done with [Styled Components](https://www.styled-components.com/)
17-
1831
### Deployment
1932

20-
Automatically deployed to [Netlify](https://netlify.com/)
33+
Automatically deployed to [Gatsby Cloud](https://www.gatsbyjs.com/dashboard/sites)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "website",
33
"version": "0.0.1",
4-
"description": "My personal website",
4+
"description": "Danv's personal website",
55
"scripts": {
66
"build": "gatsby build",
77
"develop": "gatsby clean && gatsby develop",

src/components/GlobalStyle.jsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,13 @@ const OGP = memo(({ title, description, image = '/icon_ogp.png' }) => {
6262

6363
return (
6464
<>
65-
<Helmet>
65+
<Helmet
66+
title={title}
67+
htmlAttributes={{
68+
lang: 'en',
69+
}}
70+
>
71+
<meta name="description" content={description} />
6672
<meta property="og:site_name" content="www.dvasylenko.com" />
6773
<meta property="og:title" content={title} />
6874
<meta property="og:description" content={description} />

0 commit comments

Comments
 (0)