Skip to content

Commit

Permalink
Streamline Ad (feathericons#823)
Browse files Browse the repository at this point in the history
* Fix yarn install

* Add Streamline ad
  • Loading branch information
colebemis authored Sep 1, 2023
1 parent bf14c14 commit 3d047a2
Show file tree
Hide file tree
Showing 5 changed files with 188 additions and 205 deletions.
22 changes: 11 additions & 11 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ module.exports = {
plugins: [
'gatsby-plugin-react-helmet',
'gatsby-plugin-theme-ui',
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'Feather',
short_name: 'Feather',
description: 'Simply beautiful open source icons',
start_url: '/',
theme_color: `#06f`,
background_color: `#fff`,
},
},
// {
// resolve: 'gatsby-plugin-manifest',
// options: {
// name: 'Feather',
// short_name: 'Feather',
// description: 'Simply beautiful open source icons',
// start_url: '/',
// theme_color: `#06f`,
// background_color: `#fff`,
// },
// },
{
resolve: 'gatsby-plugin-google-analytics',
options: {
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
"fuse.js": "3.4.5",
"gatsby": "^2.17.11",
"gatsby-plugin-google-analytics": "^2.1.25",
"gatsby-plugin-manifest": "^2.2.27",
"gatsby-plugin-react-helmet": "^3.1.14",
"gatsby-plugin-theme-ui": "^0.2.43",
"gatsby-source-filesystem": "^2.1.0",
Expand Down
6 changes: 3 additions & 3 deletions src/components/Sidebar.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/** @jsx jsx */
import { jsx } from 'theme-ui'
import Customize from './Customize'
import CarbonAd from './CarbonAd'
import StreamlineAd from './StreamlineAd'

function Sidebar() {
return (
<div sx={{ paddingY: 5, paddingX: 4 }}>
<div sx={{ paddingY: 5, paddingX: 4, display: 'grid', gap: 6 }}>
<Customize />
<CarbonAd sx={{ marginTop: 6 }} />
<StreamlineAd />
</div>
)
}
Expand Down
167 changes: 167 additions & 0 deletions src/components/StreamlineAd.js

Large diffs are not rendered by default.

Loading

0 comments on commit 3d047a2

Please sign in to comment.