├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── config.yml │ └── feature-request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── package.json ├── src ├── components │ ├── common │ │ ├── image.js │ │ ├── layout │ │ │ ├── layout.js │ │ │ └── seo.js │ │ └── navigation │ │ │ ├── navigation.js │ │ │ └── style.js │ ├── global.js │ └── sections │ │ ├── features.js │ │ ├── footer.js │ │ ├── getstarted.js │ │ └── header.js ├── images │ ├── gatsby-icon.png │ ├── gatsby-starter-saas-marketing-full-page.png │ └── product │ │ ├── background-blob.svg │ │ ├── couch.png │ │ ├── green-skew.png │ │ └── skew.png ├── pages │ ├── 404.js │ └── index.js ├── services │ └── .gitkeep ├── static │ └── fonts │ │ ├── HKGrotesk-Black.woff │ │ ├── HKGrotesk-Black.woff2 │ │ ├── HKGrotesk-Bold.woff │ │ ├── HKGrotesk-Bold.woff2 │ │ ├── HKGrotesk-ExtraBold.woff │ │ ├── HKGrotesk-ExtraBold.woff2 │ │ ├── HKGrotesk-Light.woff │ │ ├── HKGrotesk-Light.woff2 │ │ ├── HKGrotesk-Medium.woff │ │ ├── HKGrotesk-Medium.woff2 │ │ ├── HKGrotesk-Regular.woff │ │ ├── HKGrotesk-Regular.woff2 │ │ ├── HKGrotesk-SemiBold.woff │ │ ├── HKGrotesk-SemiBold.woff2 │ │ ├── HKGrotesk-SemiBoldItalic.woff │ │ ├── HKGrotesk-SemiBoldItalic.woff2 │ │ └── fonts.css ├── styles │ ├── GlobalStyles.js │ └── theme.js └── utils │ └── .gitkeep └── yarn.lock /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/gatsby-ssr.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/package.json -------------------------------------------------------------------------------- /src/components/common/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/components/common/image.js -------------------------------------------------------------------------------- /src/components/common/layout/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/components/common/layout/layout.js -------------------------------------------------------------------------------- /src/components/common/layout/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/components/common/layout/seo.js -------------------------------------------------------------------------------- /src/components/common/navigation/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/components/common/navigation/navigation.js -------------------------------------------------------------------------------- /src/components/common/navigation/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/components/common/navigation/style.js -------------------------------------------------------------------------------- /src/components/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/components/global.js -------------------------------------------------------------------------------- /src/components/sections/features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/components/sections/features.js -------------------------------------------------------------------------------- /src/components/sections/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/components/sections/footer.js -------------------------------------------------------------------------------- /src/components/sections/getstarted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/components/sections/getstarted.js -------------------------------------------------------------------------------- /src/components/sections/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/components/sections/header.js -------------------------------------------------------------------------------- /src/images/gatsby-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/images/gatsby-icon.png -------------------------------------------------------------------------------- /src/images/gatsby-starter-saas-marketing-full-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/images/gatsby-starter-saas-marketing-full-page.png -------------------------------------------------------------------------------- /src/images/product/background-blob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/images/product/background-blob.svg -------------------------------------------------------------------------------- /src/images/product/couch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/images/product/couch.png -------------------------------------------------------------------------------- /src/images/product/green-skew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/images/product/green-skew.png -------------------------------------------------------------------------------- /src/images/product/skew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/images/product/skew.png -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/services/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/fonts/HKGrotesk-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/static/fonts/HKGrotesk-Black.woff -------------------------------------------------------------------------------- /src/static/fonts/HKGrotesk-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/static/fonts/HKGrotesk-Black.woff2 -------------------------------------------------------------------------------- /src/static/fonts/HKGrotesk-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/static/fonts/HKGrotesk-Bold.woff -------------------------------------------------------------------------------- /src/static/fonts/HKGrotesk-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/static/fonts/HKGrotesk-Bold.woff2 -------------------------------------------------------------------------------- /src/static/fonts/HKGrotesk-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/static/fonts/HKGrotesk-ExtraBold.woff -------------------------------------------------------------------------------- /src/static/fonts/HKGrotesk-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/static/fonts/HKGrotesk-ExtraBold.woff2 -------------------------------------------------------------------------------- /src/static/fonts/HKGrotesk-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/static/fonts/HKGrotesk-Light.woff -------------------------------------------------------------------------------- /src/static/fonts/HKGrotesk-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/static/fonts/HKGrotesk-Light.woff2 -------------------------------------------------------------------------------- /src/static/fonts/HKGrotesk-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/static/fonts/HKGrotesk-Medium.woff -------------------------------------------------------------------------------- /src/static/fonts/HKGrotesk-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/static/fonts/HKGrotesk-Medium.woff2 -------------------------------------------------------------------------------- /src/static/fonts/HKGrotesk-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/static/fonts/HKGrotesk-Regular.woff -------------------------------------------------------------------------------- /src/static/fonts/HKGrotesk-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/static/fonts/HKGrotesk-Regular.woff2 -------------------------------------------------------------------------------- /src/static/fonts/HKGrotesk-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/static/fonts/HKGrotesk-SemiBold.woff -------------------------------------------------------------------------------- /src/static/fonts/HKGrotesk-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/static/fonts/HKGrotesk-SemiBold.woff2 -------------------------------------------------------------------------------- /src/static/fonts/HKGrotesk-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/static/fonts/HKGrotesk-SemiBoldItalic.woff -------------------------------------------------------------------------------- /src/static/fonts/HKGrotesk-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/static/fonts/HKGrotesk-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /src/static/fonts/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/static/fonts/fonts.css -------------------------------------------------------------------------------- /src/styles/GlobalStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/styles/GlobalStyles.js -------------------------------------------------------------------------------- /src/styles/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/src/styles/theme.js -------------------------------------------------------------------------------- /src/utils/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegn/gatsby-starter-saas-marketing/HEAD/yarn.lock --------------------------------------------------------------------------------