Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/molebox/gatsby-theme-seo
A Gatsby theme for site SEO. Built with TypeScript.
https://github.com/molebox/gatsby-theme-seo
gatsby gatsby-plugin gatsby-theme react seo seo-optimization typescript
Last synced: 9 days ago
JSON representation
A Gatsby theme for site SEO. Built with TypeScript.
- Host: GitHub
- URL: https://github.com/molebox/gatsby-theme-seo
- Owner: molebox
- Created: 2019-09-18T06:45:36.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T10:40:05.000Z (almost 2 years ago)
- Last Synced: 2024-10-14T22:42:45.402Z (23 days ago)
- Topics: gatsby, gatsby-plugin, gatsby-theme, react, seo, seo-optimization, typescript
- Language: TypeScript
- Size: 1.76 MB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gatsby-theme-seo
A Gatsby theme for site SEO. Built with TypeScript.## BEAKING CHANGE ##
As of v.1.0.0 the twitter handle is now removed from siteMetadata and instead taken as a prop o the actual SEO component itself. The reason for this change was to prevent clashing with other themes that use siteMetadata.
## BEAKING CHANGE v1.1.0 ##
As of v.1.1.0 the image prop has been removed in favor of an ogImage prop which expects a full url to your open graph image
## Installation:
```yarn add gatsby-theme-seo```
## Props
| Name | Optional | Type | Default |
|---------------|----------|------------|---------|
| title | No | string | None |
| description | No | string | None |
| lang | No | string | 'en' |
| ogImage | Yes | string | None |
| meta | Yes | array | None |
| keywords | Yes | string[] | None |
| pathname | Yes | string | None |
| twitter | Yes | string | None |## Usage:
In your sites gatsby-config:
```
module.exports = {
plugins: [
{
resolve: 'gatsby-theme-seo',
options: {
title: 'My awesome website',
author: 'Rich Haines',
siteUrl: 'https://www.myawesomewebsite.com',
social: {
twitter: 'studio_hungry'
}
}
}
]
}
``````
import React from 'react';
import {SEO} from 'gatsby-theme-seo';const Index = () => (
This is a title
)export default Index;
```The description is optional so you can grab it from a data source. This gives you the flexibility to allow your CMS to dictate this information instead of the hardcoded values from the themes options.
```
import React from 'react';
import {SEO} from 'gatsby-theme-seo';
import {graphql, useStaticQuery} from 'gatsby';const Index = () => {
const content = useStaticQuery(query);
const metadata = content.allSanityMetadata.edges;
return (
{metadata.map(({node}) => (
))}
);
};export default Index;
export const query = graphql`
query MainImageQuery {
allSanityMetadata {
edges {
node {
keywords
description
}
}
}
}
`;```
```
import React from 'react';
import {SEO} from 'gatsby-theme-seo';const Index = () => (
This is a title
)export default Index;
```## Built With
- [Gatsby](https://www.gatsbyjs.org/)
- [TypeScript](https://www.typescriptlang.org/)## Authors
- **Rich Haines** - _Hungry Bear Studio_
## License
This project is licensed under the MIT License