JSPM

gatsby-theme-app-landing-page

1.0.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4
  • Score
    100M100P100Q31027F
  • License MIT

A Gatsby theme that quickly creates a one-page website for your mobile app that has already been released.

Package Exports

  • gatsby-theme-app-landing-page

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gatsby-theme-app-landing-page) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

App Landing Page Gatsby Theme

A Gatsby theme that quickly creates a one-page website for your mobile app that has already been released.

Example

You can see an example of this theme in use here.

Installation

npm i --save gatsby-theme-app-landing-page
// gatsby-config.js
module.exports = {
  plugins: [
    {
      resolve: 'gatsby-theme-app-landing-page',
      options: {
        appStoreId: 123456,
        typography: 'slab',
        appearance: 'dark',
      },
    },
  ],
};

Plugin Options

The following plugin options let you control design aspects of the theme.

  1. appStoreId (required): ID of your Apple App Store app.

  2. typography (optional): Typeography of the headers. Default value: sans.

    Possible option values:

  3. appearance (optional): Appearance of the theme. Default value: auto.

    Possible option values:

    • light - Light colored theme.
    • dark - Dark colored theme.
    • auto - Changes with the device display appearance setting.