
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@lambdacurry/gatsby-theme
Advanced tools
Install the theme via npm or yarn.
npm install @lambdacurry/gatsby-theme
# or
yarn add @lambdacurry/gatsby-theme
gatsby-config.jsAdd 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 */ },
}
}
]
};
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`
}
};
Metadata componentTo 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>
);
FAQs
## Install the theme
We found that @lambdacurry/gatsby-theme demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.