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.
appStoreId
(required): ID of your Apple App Store app.typography
(optional): Typeography of the headers. Default value:sans
.Possible option values:
sans
- Inter.serif
- Source Serif Pro.slab
- Roboto Slab.mono
- Space Mono.
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.