forked from pixie-io/blog.px.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* clean_up * deleted_img * remove feature blog * blog heading + filtering * blog home page * prepare blog post template * blog post header * add code renderer from docs * import inline code component * import docs material theme * add all mdx components from docs (except releases) * import header from website * update logo text * header updates * lint * add share to media * code block with line numbers and fixed height * add featured blob post cards * Update blog-post.js * blockquote * quote component * Update pixie-intro.md * update favicons * small fixes * Update pixie-intro.md * fix related stories - mobile * Update blog-post.module.scss Co-authored-by: Ishan Mukherjee <[email protected]>
- Loading branch information
Showing
45 changed files
with
18,199 additions
and
855 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
import { createMuiTheme } from '@material-ui/core'; | ||
import MainThemeProvider from './src/components/mainThemeProvider.tsx'; | ||
import './src/scss/style.scss'; | ||
|
||
const { MuiThemeProvider } = require('@material-ui/core/styles'); | ||
|
||
const React = require('react'); | ||
|
||
const theme = createMuiTheme(); | ||
// eslint-disable-next-line import/prefer-default-export | ||
export const wrapRootElement = ({ element }) => ( | ||
<MuiThemeProvider theme={theme}> | ||
<MainThemeProvider> | ||
{element} | ||
</MuiThemeProvider> | ||
</MainThemeProvider> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
/** | ||
* Implement Gatsby's SSR (Server Side Rendering) APIs in this file. | ||
* Implement Gatsby's Browser APIs in this file. | ||
* | ||
* See: https://www.gatsbyjs.org/docs/ssr-apis/ | ||
* See: https://www.gatsbyjs.org/docs/browser-apis/ | ||
*/ | ||
import React from 'react'; | ||
import MainThemeProvider from './src/components/mainThemeProvider.tsx'; | ||
import './src/scss/style.scss'; | ||
|
||
// You can delete this file if you're not using it | ||
// eslint-disable-next-line import/prefer-default-export | ||
export const wrapRootElement = ({ element }) => ( | ||
<MainThemeProvider> | ||
{element} | ||
</MainThemeProvider> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.