Skip to content

Commit

Permalink
Updated favicon and logo
Browse files Browse the repository at this point in the history
Splitted assets into assets and logo
Updated manifest
Updated og-images
Add custom sw
  • Loading branch information
Marvin Heilemann committed Jan 21, 2020
1 parent f6f01f6 commit 000a69a
Show file tree
Hide file tree
Showing 12 changed files with 28 additions and 24 deletions.
14 changes: 8 additions & 6 deletions TODO.md
Expand Up @@ -17,11 +17,11 @@
- [x] ~~add schema generator~~
- [x] new start page: https://labs.semplice.com/s5-vertical-grid
- [x] test purgecss with classes from Markdown files
- [ ] add NOW deployment
- [ ] Setup Nameserver
- [ ] Test
- [ ] Everything pushed to master -> marvin.digital
- [ ] Everything pushed to development -> dev.marvin.digital
- [x] add NOW deployment
- [x] Setup Nameserver
- [x] Test
- [x] Everything pushed to master -> marvin.digital
- [x] Everything pushed to development -> dev.marvin.digital
- [ ] Setup GitHub workflow to deploy with notification and version alias
- [x] replace React with [Preact][1] (check if it works when finished)
- [x] add version to GraphQL data not as file...
Expand All @@ -38,6 +38,8 @@
- [ ] use gatsby images everywhere (homepage for file savings)
- [ ] fix issue with header on prod build
- [ ] MDX pages are not using remark images plugin
- [ ] add scroll to top
- [ ] check description, keywords and title on all pages
- [ ] add md table of contents
- [ ] new image for start: me while coding
- [ ] new image for start: me while writing
Expand All @@ -58,7 +60,6 @@
- [x] script to open mobile
- [ ] open summary view by default
- [x] Make text justified
- [ ] add scroll to top
- [x] ~~use CSS blend modes (overlay)~~
- [ ] add League of Legends API to show profile and stats
- https://developer.riotgames.com/apis
Expand All @@ -78,6 +79,7 @@
- [ ] check all pages with screen reader
- [ ] check all pages with reduced motion
- [ ] check all pages with reduced transparency
- [ ] remove source maps in production builds
- [x] PWA: add service worker for offline usage (`gatsby-plugin-offline`)
- [x] ~~add tests?!~~
- [x] ~~move from bash script to [Nim][2]~~
Expand Down
Binary file modified assets/assets.sketch
Binary file not shown.
Binary file added assets/logo.sketch
Binary file not shown.
13 changes: 7 additions & 6 deletions gatsby-config.js
Expand Up @@ -163,18 +163,19 @@ module.exports = {
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'M/D',
short_name: 'M/D',
start_url: '/',
background_color: '#1f242e',
theme_color: '#00e2a1',
display: 'browser',
name: siteMetadata.siteTitle,
short_name: siteMetadata.siteTitleShort,
start_url: '/?source=pwa',
background_color: '#1f242e', // must equal `--background-color` in `./src/styles/themes/_<theme>.scss`
theme_color: '#fafcff', // how the UI should be tinted
display: 'standalone',
icon: './static/favicon.svg',
},
},
{
resolve: `gatsby-plugin-offline`,
options: {
appendScript: require.resolve(`./src/sw.js`),
precachePages: [
`/about/`,
`/imprint/`,
Expand Down
4 changes: 3 additions & 1 deletion metadata.js
Expand Up @@ -2,8 +2,10 @@ module.exports = {
siteTitle: `Marvin/Digital`,
siteTitleShort: 'M/D',
siteAuthor: `Marvin Heilemann`,
siteDescription: `Projects Marvin Heilemann has been working on now and in the past.`,
siteDescription: `Me, Myself and I – Projects, Photography, Writings and even more about Marvin Heilemann (also named muuvmuuv)`,
siteKeywords: [
'marvin',
'heilemann',
'muuvmuuv',
'portfolio',
'webdesign',
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "marvin-digital",
"version": "3.8.2",
"version": "3.9.0",
"private": true,
"description": "Portfolio of and by Marvin Heilemann (@muuvmuuv)",
"repository": {
Expand Down
13 changes: 6 additions & 7 deletions src/images/logo.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/logo.webp
Binary file not shown.
2 changes: 2 additions & 0 deletions src/sw.js
@@ -0,0 +1,2 @@
/* eslint-disable no-restricted-globals */
/* globals workbox */

0 comments on commit 000a69a

Please sign in to comment.