Adding temp favicon and manifest change

This commit is contained in:
Moris Zen
2018-09-05 13:13:04 +02:00
parent 2ad1a1a193
commit ac6fd754a8
5 changed files with 12 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 156 KiB

After

Width:  |  Height:  |  Size: 136 KiB

BIN
src/images/favicon32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -10,6 +10,8 @@ require('typeface-lato')
import '../styles/index.css'
import '../styles/general.css'
import favicon32 from '../images/favicon32.png'
const Layout = ({ children, data }) => (
<div className="font-sans mx-auto">
<Helmet
@@ -21,6 +23,7 @@ const Layout = ({ children, data }) => (
content: 'software, design, coding, programming, code, consulting',
},
]}
link={[{ rel: 'shortcut icon', type: 'image/png', href: `${favicon32}` }]}
/>
<div className="side-panel panel">
<Header />

View File

@@ -153,6 +153,10 @@ body {
background-color: RGBA(0, 0, 0, 0.1);
}
.headroom-wrapper {
background-color: rgba(87, 99, 171, 0.05);
}
.saburly-text-intro {
color: #1f2443;
}

View File

@@ -6,6 +6,8 @@ require('prismjs/themes/prism-solarizedlight.css')
import PageTransition from 'gatsby-plugin-page-transitions'
import favicon32 from '../images/favicon32.png'
class PostDefault extends Component {
componentDidMount() {
Prism.highlightAll()
@@ -24,6 +26,9 @@ class PostDefault extends Component {
'software, design, coding, programming, code, consulting',
},
]}
link={[
{ rel: 'shortcut icon', type: 'image/png', href: `${favicon32}` },
]}
/>
<main className="container mx-auto p-4 max-w-lg sm:p-10">
<h1>{data.wordpressPost.title}</h1>