
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@gatsbyjs/gatsby-theme-website
Advanced tools
/** @jsx jsx */
import { jsx } from "theme-ui" import { graphql } from "gatsby" import { GoMarkGithub as GithubIcon } from "react-icons/go" import { FaUsers as CommunityIcon } from "react-icons/fa"
import PageMetadata from "../components/page-metadata" import Link from "../components/localized-link" import Container from "../components/container" import PageWithPluginSearchBar from "../components/page-with-plugin-searchbar" import FooterLinks from "../components/shared/footer-links" import GatsbyIcon from "../components/gatsby-monogram"
const GatsbyPluginBadge = ({ isOfficial }) => {
const Icon = isOfficial ? GatsbyIcon : CommunityIcon
const title = isOfficial
? Official Gatsby Plugin
: Community Gatsby Plugin
const text = isOfficial ? Official Plugin : Community Plugin
return (
<div
sx={{
variant: links.muted,
mr: 8,
"&&": {
border: 0,
color: textMuted,
display: flex,
fontWeight: body,
},
"&&:hover": {
color: textMuted,
},
}}
>
<span
sx={{
display: inline-block,
mr: 2,
}}
title={title}
>
{text}
)
}
export default function PackageReadmeTemplate({ location, data: { npmPackage }, }) { const readmePage = npmPackage.readme.childMarkdownRemark const isOfficial = npmPackage.fields.official const packageName = npmPackage.name
const excerpt = readmePage.excerpt ?? Plugin information for ${packageName}
const githubUrl = isOfficial
? https://github.com/gatsbyjs/gatsby/tree/master/packages/${packageName}
: npmPackage.repository?.url ??
https://github.com/search?q=${npmPackage.name}
return (
<div
sx={{
display: flex,
flexWrap: wrap,
justifyContent: space-between,
pb: 6,
"&&:hover": {
color: inherit,
},
}}
>
<div
css={{
display: flex,
justifyContent: space-between,
}}
>
<a
sx={{ variant: links.muted }}
href={githubUrl}
aria-labelledby="github-link-label"
>
<GithubIcon focusable="false" sx={{ mr: 2 }} />
View plugin on GitHub
{githubUrl && (
<Link
to={/starters?d=${packageName}}
sx={{ variant: links.muted }}
>
See starters using this
)}
<div
css={{ position: relative }}
dangerouslySetInnerHTML={{ __html: readmePage.html }}
/>
)
}
export const pageQuery = graphql query($slug: String!) { npmPackage(slug: { eq: $slug }) { name keywords fields { official } repository { url } readme { childMarkdownRemark { html excerpt timeToRead } } } }
FAQs
Theme for Gatsby's Website
The npm package @gatsbyjs/gatsby-theme-website receives a total of 1 weekly downloads. As such, @gatsbyjs/gatsby-theme-website popularity was classified as not popular.
We found that @gatsbyjs/gatsby-theme-website demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 21 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.