> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scanova.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Additional Page Settings

> Defines meta and branding properties for a QR Code landing page. These settings enhance SEO, sharing previews, and brand identity for each QR Code category.

## 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

| Property              | Type     | Required | Description                                                                                                     |
| :-------------------- | :------- | :------- | :-------------------------------------------------------------------------------------------------------------- |
| **meta\_title**       | `string` | No       | Page title used for SEO and browser tab display. Maximum length: **100 characters**.                            |
| **meta\_description** | `string` | No       | Meta description for the page. Appears in search results and link previews. Maximum length: **200 characters**. |
| **feature\_image**    | `object` | No       | Defines the Open Graph or social preview image.                                                                 |
| • **url**             | `string` | No       | Image URL (supports `png`, `jpg`, `jpeg`, `svg`, `gif`). Must be a valid URI.                                   |
| **favicon**           | `object` | No       | Browser tab icon or shortcut icon for the page.                                                                 |
| • **url**             | `string` | No       | Favicon image URL. Must be a valid URI.                                                                         |

## Used in Categories

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

* [Business Card](/guides/category-components/categories/businessCard)
* [Coupon](/guides/category-components/categories/coupon)
* [Custom Page](/guides/category-components/categories/dynamicText)
* [Event](/guides/category-components/categories/event)
* [Feedback](/guides/category-components/categories/feedback)
* [Product](/guides/category-components/categories/product)
* [Real Estate](/guides/category-components/categories/realEstate)
* [Restaurant](/guides/category-components/categories/restaurant)
* [Social Media](/guides/category-components/categories/sMedia)
* [Wedding](/guides/category-components/categories/wedding)

## Schema

<CodeGroup>
  ```json Schema theme={null}
  {
    "$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
      }
    }
  }
  ```
</CodeGroup>

## 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.
