3.0.0 • Published 4 years ago
@lambdacurry/gatsby-theme v3.0.0
Gatsby Theme
Install the theme
Install the theme via npm or yarn.
npm install @lambdacurry/gatsby-theme
# or
yarn add @lambdacurry/gatsby-themeAdd the theme to your gatsby-config.js
Add the theme to the plugins array with the appropriate options.
Note: Any siteMetadata or manifest options you do not provide will be set to the default below.
module.exports = {
plugins: [
// ...other plugins
{
resolve: `@lambdacurry/gatsby-theme`,
options: {
siteMetadata: { /* Add site metadata options here */ },
manifest: { /* Add manifest options here */ },
}
}
]
};Configure the theme options
You can modify the siteMetadata and manifest options. They have the following defaults:
const defaultSiteConfig = {
siteMetadata: {
lang: 'en',
charSet: 'utf-8',
siteUrl: 'http://localhost:8000',
title: '',
description:
'Customized by Lambda Curry - Kick off your next, great Gatsby project with this default starter. This barebones starter ships with the main Gatsby configuration files you might need.',
author: 'Lambda Curry',
titleTemplate: '% | LC Gatsby Starter',
defaultTitle: 'LC Gatsby Starter',
baseBodyClassName: '',
image: '',
ogImage: '',
ogTitle: '',
ogDescription: '',
twitterSite: '',
twitterCreator: '',
twitterHandle: '',
twitterImage: '',
twitterTitle: '',
twitterDescription: '',
favicon: `${__dirname}/../src/images/gatsby-icon.png`,
postsPerPage: 12
},
manifest: {
icon: `${__dirname}/../src/images/gatsby-icon.png`,
name: 'LC Gatsby Starter',
short_name: 'LC Gatsby Starter',
start_url: '/',
theme_color: '#15171a',
background_color: '#e9e9e9',
display: `minimal-ui`
}
};Use the Metadata component
To use the Metadata component, add it to your own layout component, and override any of the site metadata options by passing them directly as props.
import React, { FC } from 'react';
import { Metadata } from '@lambdacurry/gatsby-theme/src/components';
export const Layout: FC<{ title: string }> = ({ children, title }) => (
<div className="layout">
<Metadata title={title} />
<main>
<h2>{title}</h2>
{children}
</main>
</div>
);2.0.7-5
4 years ago
2.0.7-4
4 years ago
3.0.0
4 years ago
2.0.7-0
4 years ago
2.0.3
4 years ago
2.0.5
4 years ago
2.0.4
4 years ago
2.0.6
4 years ago
2.0.2
4 years ago
2.0.1
4 years ago
2.0.0
4 years ago
1.1.4
4 years ago
1.1.1
4 years ago
1.1.3
4 years ago
1.1.2
4 years ago
1.0.2
4 years ago
1.1.0
4 years ago
1.0.1
4 years ago
1.0.0
4 years ago