Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@gatsbyjs/gatsby-theme-website

Package Overview
Dependencies
Maintainers
21
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gatsbyjs/gatsby-theme-website

Theme for Gatsby's Website

  • 0.0.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
21
Weekly downloads
 
Created
Source

/** @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 } } } }

Keywords

FAQs

Package last updated on 09 Jun 2020

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc