Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

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

Example Image

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

Features

  • Automatically retrieves information from the App Store
  • Responsive
  • Supports dark mode
  • Smart app banners
  • Supports iOS App Store and Mac App Store

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.

How to Contribute

If you would like to contribute to this theme, fork this repo and create a PR. You can also create an issue to fix a bug or to suggest a new feature.

Coming Soon

  • Links to social media
  • Email subscribers
  • Manual field override
  • Platform selection
© 2023 Gatsby, Inc.