Skip to content

Commit

Permalink
feat!: website remake
Browse files Browse the repository at this point in the history
  • Loading branch information
SethCohen committed Mar 16, 2024
1 parent 53a4ddf commit 6dcfeb0
Show file tree
Hide file tree
Showing 15 changed files with 25,992 additions and 24,533 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ node_modules/
.cache/
public
src/gatsby-types.d.ts
.vscode/
54 changes: 0 additions & 54 deletions README.md

This file was deleted.

1 change: 1 addition & 0 deletions gatsby-browser.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import "./src/styles/global.css"
54 changes: 27 additions & 27 deletions gatsby-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,38 +2,38 @@ import type { GatsbyConfig } from "gatsby";

const config: GatsbyConfig = {
siteMetadata: {
title: `SethDev`,
siteUrl: `https://www.yourdomain.tld`
title: `sethdev.ca`,
siteUrl: `https://sethdev.ca`
},
// More easily incorporate content into your pages through automatic TypeScript type generation and better GraphQL IntelliSense.
// If you use VSCode you can also use the GraphQL plugin
// Learn more at: https://gatsby.dev/graphql-typegen
graphqlTypegen: true,
plugins: [{
resolve: 'gatsby-plugin-google-analytics',
options: {
"trackingId": "G-WNKWL8CYP9"
}
}, "gatsby-plugin-image", "gatsby-plugin-react-helmet", "gatsby-plugin-sitemap", {
resolve: 'gatsby-plugin-manifest',
options: {
"icon": "src/images/icon.png"
}
}, "gatsby-plugin-mdx", "gatsby-plugin-sharp", "gatsby-transformer-sharp", {
resolve: 'gatsby-source-filesystem',
options: {
"name": "images",
"path": "./src/images/"
},
__key: "images"
}, {
resolve: 'gatsby-source-filesystem',
options: {
"name": "pages",
"path": "./src/pages/"
},
__key: "pages"
}]
plugins: [
"gatsby-plugin-postcss",
//"gatsby-plugin-google-gtag",
"gatsby-plugin-image",
"gatsby-plugin-sitemap",
{
resolve: 'gatsby-plugin-manifest',
options: {
"icon": "src/assets/icon.png"
}
}, "gatsby-plugin-mdx", "gatsby-transformer-remark", "gatsby-plugin-sharp", "gatsby-transformer-sharp", {
resolve: 'gatsby-source-filesystem',
options: {
"name": "images",
"path": "./src/assets/"
},
__key: "images"
}, {
resolve: 'gatsby-source-filesystem',
options: {
"name": "pages",
"path": "./src/pages/"
},
__key: "pages"
}]
};

export default config;
Loading

0 comments on commit 6dcfeb0

Please sign in to comment.