Skip to content

Commit 6dcfeb0

Browse files
committed
feat!: website remake
1 parent 53a4ddf commit 6dcfeb0

15 files changed

Lines changed: 25992 additions & 24533 deletions

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ node_modules/
22
.cache/
33
public
44
src/gatsby-types.d.ts
5+
.vscode/

README.md

Lines changed: 0 additions & 54 deletions
This file was deleted.

gatsby-browser.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import "./src/styles/global.css"

gatsby-config.ts

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -2,38 +2,38 @@ import type { GatsbyConfig } from "gatsby";
22

33
const config: GatsbyConfig = {
44
siteMetadata: {
5-
title: `SethDev`,
6-
siteUrl: `https://www.yourdomain.tld`
5+
title: `sethdev.ca`,
6+
siteUrl: `https://sethdev.ca`
77
},
88
// More easily incorporate content into your pages through automatic TypeScript type generation and better GraphQL IntelliSense.
99
// If you use VSCode you can also use the GraphQL plugin
1010
// Learn more at: https://gatsby.dev/graphql-typegen
1111
graphqlTypegen: true,
12-
plugins: [{
13-
resolve: 'gatsby-plugin-google-analytics',
14-
options: {
15-
"trackingId": "G-WNKWL8CYP9"
16-
}
17-
}, "gatsby-plugin-image", "gatsby-plugin-react-helmet", "gatsby-plugin-sitemap", {
18-
resolve: 'gatsby-plugin-manifest',
19-
options: {
20-
"icon": "src/images/icon.png"
21-
}
22-
}, "gatsby-plugin-mdx", "gatsby-plugin-sharp", "gatsby-transformer-sharp", {
23-
resolve: 'gatsby-source-filesystem',
24-
options: {
25-
"name": "images",
26-
"path": "./src/images/"
27-
},
28-
__key: "images"
29-
}, {
30-
resolve: 'gatsby-source-filesystem',
31-
options: {
32-
"name": "pages",
33-
"path": "./src/pages/"
34-
},
35-
__key: "pages"
36-
}]
12+
plugins: [
13+
"gatsby-plugin-postcss",
14+
//"gatsby-plugin-google-gtag",
15+
"gatsby-plugin-image",
16+
"gatsby-plugin-sitemap",
17+
{
18+
resolve: 'gatsby-plugin-manifest',
19+
options: {
20+
"icon": "src/assets/icon.png"
21+
}
22+
}, "gatsby-plugin-mdx", "gatsby-transformer-remark", "gatsby-plugin-sharp", "gatsby-transformer-sharp", {
23+
resolve: 'gatsby-source-filesystem',
24+
options: {
25+
"name": "images",
26+
"path": "./src/assets/"
27+
},
28+
__key: "images"
29+
}, {
30+
resolve: 'gatsby-source-filesystem',
31+
options: {
32+
"name": "pages",
33+
"path": "./src/pages/"
34+
},
35+
__key: "pages"
36+
}]
3737
};
3838

3939
export default config;

0 commit comments

Comments
 (0)