Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions gatsby-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,14 +86,6 @@ const config: GatsbyConfig = {
path: `${__dirname}/src/content`,
},
},
{
resolve: 'gatsby-plugin-mailchimp',
options: {
endpoint:
'https://gmail.us20.list-manage.com/subscribe/post?u=98bed213911ed14e04f519b82&id=9c27a4ee73',
timeout: 3500, //the amount of time, in milliseconds, that you want to allow mailchimp to respond to your request before timing out. defaults to 3500
},
},
{
resolve: `gatsby-transformer-remark`,
options: {
Expand Down
47 changes: 0 additions & 47 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"serve": "gatsby serve",
"clean": "gatsby clean",
"check-types": "tsc -p . --noEmit",
"lint": "eslint \"{src/**,.}/*.{js,ts,tsx,mdx}\" --max-warnings 0 --fix",
"lint-check": "eslint \"{src/**,.}/*.{js,ts,tsx,mdx}\" --max-warnings 0",
"lint": "eslint \"src/**/*.{js,ts,tsx,mdx}\" --max-warnings 0 --fix",
"lint-check": "eslint \"src/**/*.{js,ts,tsx,mdx}\" --max-warnings 0",
"prepare": "husky"
},
"dependencies": {
Expand Down Expand Up @@ -51,7 +51,6 @@
"eslint-plugin-prettier": "^5.2.1",
"gatsby": "^5.14.1",
"gatsby-plugin-google-gtag": "^5.14.0",
"gatsby-plugin-mailchimp": "^5.2.2",
"gatsby-plugin-manifest": "^5.14.0",
"gatsby-plugin-material-ui": "^4.1.0",
"gatsby-plugin-mdx": "^5.14.0",
Expand All @@ -68,7 +67,7 @@
"typescript-eslint": "^8.19.1"
},
"lint-staged": {
"*.{js,ts,tsx,mdx}": [
"src/**/*.{js,ts,tsx,mdx}": [
"npx eslint --fix"
]
}
Expand Down
3 changes: 1 addition & 2 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import type { HeadProps } from 'gatsby';

import { Layout, SEO } from '../components';
import type { DataProps } from '../hooks';
import { About, Blog, Landing, Libraries, News, Newsletter } from '../sections';
import { About, Blog, Landing, Libraries, News } from '../sections';
import { PAGE } from '../helper';
import { footerContent, headerContent } from '../content';
import { Testimonials } from '../sections/home/Testimonials';
Expand All @@ -33,7 +33,6 @@ const HomePage = (): JSX.Element => (
<News />
<Blog />
<Testimonials />
<Newsletter />
</Layout>
);
export default HomePage;
Expand Down
236 changes: 0 additions & 236 deletions src/sections/home/Newsletter.tsx

This file was deleted.

1 change: 0 additions & 1 deletion src/sections/home/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,3 @@ export { Blog } from './Blog';
export { Landing } from './Landing';
export { Libraries } from './Libraries';
export { News } from './News';
export { Newsletter } from './Newsletter';
Loading