Skip to main content

Overview

The Additional Page Settings component allows you to customize page-level metadata, including title, description, favicon, and featured image.
It ensures each QR Code landing page is properly optimized for search engines, social media previews, and branded visibility.
This component is typically used to configure key Open Graph (OG) and metadata values for shareable pages like Events, Products, Coupons, and Business Cards.

Properties

PropertyTypeRequiredDescription
meta_titlestringNoPage title used for SEO and browser tab display. Maximum length: 100 characters.
meta_descriptionstringNoMeta description for the page. Appears in search results and link previews. Maximum length: 200 characters.
feature_imageobjectNoDefines the Open Graph or social preview image.
urlstringNoImage URL (supports png, jpg, jpeg, svg, gif). Must be a valid URI.
faviconobjectNoBrowser tab icon or shortcut icon for the page.
urlstringNoFavicon image URL. Must be a valid URI.

Used in Categories

This component is used in all landing page categories such as:

Schema

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Additional Page Settings",
  "type": "object",
  "properties": {
    "meta_title": {
      "type": "string",
      "maxLength": 100
    },
    "meta_description": {
      "type": "string",
      "maxLength": 200
    },
    "feature_image": {
      "type": "object",
      "properties": {
        "url": {
          "type": "string",
          "format": "uri"
        }
      },
      "additionalProperties": false
    },
    "favicon": {
      "type": "object",
      "properties": {
        "url": {
          "type": "string",
          "format": "uri"
        }
      },
      "additionalProperties": false
    }
  }
}

Notes

  • meta_title and meta_description improve search visibility and social sharing previews.
  • feature_image should be at least 1200×630px for optimal display on platforms like LinkedIn and Facebook.
  • Use a square favicon (32×32px or 64×64px) for best results across browsers.
  • Keep titles and descriptions concise and relevant to improve click-through rates.