-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-browser.js
28 lines (24 loc) · 1.37 KB
/
gatsby-browser.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import * as React from 'react'
import Layout from './src/components/layout'
import '@fontsource/open-sans'
import '@fontsource/teko'
import '@fontsource/oswald'
import '@fontsource/changa'
import './src/css/index.css'
// export const wrapPageElement = ({ element, props }) => (
// // <Layout {...props}>{element}</Layout>
// <div {...props}>{element}</div>
// )
export const onInitialClientRender = () => {
console.log(
`%c
▄▄▄▄▄▄ ▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄ ▄ ▄ ▄▄▄ ▄▄▄▄▄▄ ▄▄▄▄▄▄▄
█ ██ █ █ █ █ █ ▄ █ █ █ ▄ █ █ █
█ ▄ █ ▄▄▄█ ▄▄▄█▄ ▄█ █ ██ ██ █ █ █ █ █ █ ▄▄▄█
█ █ █ █ █▄▄▄█ █▄▄▄ █ █ █ █ █ █▄▄█▄█ █▄▄▄
█ █▄█ █ ▄▄▄█ ▄▄▄█ █ █ █ █ █ ▄▄ █ ▄▄▄█
█ █ █▄▄▄█ █ █ █ █ ▄ █ █ █ █ █ █▄▄▄
█▄▄▄▄▄▄██▄▄▄▄▄▄▄█▄▄▄█ █▄▄▄█ █▄▄█ █▄▄█▄▄▄█▄▄▄█ █▄█▄▄▄▄▄▄▄█`,
'color: blue; background: gray;'
)
}