Skip to main content
In DevelopmentThe landing page database schema includes SEO metadata fields. The configuration UI will be available when the landing page editor launches.

SEO Overview

Search Engine Optimization (SEO) helps your landing pages:
  • Appear in search results
  • Display correctly when shared on social media
  • Provide context to search engines and assistants

Meta Tags

Page Title

The title appears in:
  • Browser tab
  • Search engine results
  • Social media shares
<title>Limited Edition Sneaker Drop | Your Brand</title>
| Guideline | Recommendation | | ---------- | ------------------------------------ | ----- | | Length | 50-60 characters | | Format | Primary keyword | Brand | | Uniqueness | Each page should have a unique title |

Meta Description

The description appears in search results below the title:
<meta
  name="description"
  content="Join the queue for exclusive access to our limited edition sneaker release. First come, first served. Available March 15, 2024."
/>
GuidelineRecommendation
Length150-160 characters
ContentCompelling summary with call-to-action
KeywordsInclude naturally, don’t stuff

Open Graph Tags

Open Graph (OG) tags control how your page appears when shared on Facebook, LinkedIn, and other platforms.

Required Tags

<meta property="og:title" content="Limited Edition Sneaker Drop" />
<meta property="og:description" content="Join the queue for exclusive access..." />
<meta property="og:image" content="https://your-cdn.com/share-image.jpg" />
<meta property="og:url" content="https://acme.fanfare.io/sneaker-drop/register" />
<meta property="og:type" content="website" />

Share Image Specifications

PropertyRecommendation
Size1200x630 pixels
FormatJPG or PNG
File sizeUnder 1MB
Safe zoneKeep text centered, 800x400px
Design share images with the assumption that edges may be cropped on some platforms.

Optional Tags

<meta property="og:site_name" content="Your Brand" /> <meta property="og:locale" content="en_US" />

Twitter Cards

Twitter uses its own card system, falling back to OG tags when not specified.

Summary Card with Large Image

<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@yourbrand" />
<meta name="twitter:title" content="Limited Edition Sneaker Drop" />
<meta name="twitter:description" content="Join the queue for exclusive access..." />
<meta name="twitter:image" content="https://your-cdn.com/share-image.jpg" />

Card Types

TypeDescriptionBest For
summarySmall square imageGeneral content
summary_large_imageLarge rectangular imageProduct launches, events
playerEmbedded mediaVideo content

Structured Data

Structured data helps search engines understand your content:

Event Schema

For experience launches:
{
  "@context": "https://schema.org",
  "@type": "Event",
  "name": "Limited Edition Sneaker Drop",
  "startDate": "2024-03-15T10:00:00-05:00",
  "description": "Exclusive access to limited edition sneakers",
  "eventStatus": "https://schema.org/EventScheduled",
  "eventAttendanceMode": "https://schema.org/OnlineEventAttendanceMode",
  "location": {
    "@type": "VirtualLocation",
    "url": "https://acme.fanfare.io/sneaker-drop/register"
  },
  "organizer": {
    "@type": "Organization",
    "name": "Your Brand",
    "url": "https://your-brand.com"
  }
}

Product Schema

For product drops:
{
  "@context": "https://schema.org",
  "@type": "Product",
  "name": "Limited Edition Sneakers",
  "description": "Exclusive release sneakers",
  "brand": {
    "@type": "Brand",
    "name": "Your Brand"
  },
  "offers": {
    "@type": "Offer",
    "availability": "https://schema.org/PreOrder",
    "price": "199.00",
    "priceCurrency": "USD",
    "availabilityStarts": "2024-03-15T10:00:00-05:00"
  }
}

Canonical URLs

Specify the authoritative URL for your page:
<link rel="canonical" href="https://acme.fanfare.io/sneaker-drop/register" />

When to Use

ScenarioCanonical URL
Default domainFanfare URL
Custom domainYour custom URL
Multiple paths to same contentPrimary path

Robots Directives

Control search engine behavior:

Index/Follow (Default)

<meta name="robots" content="index, follow" />

Prevent Indexing

For draft or test pages:
<meta name="robots" content="noindex, nofollow" />

Configuration Options

Database Schema

The landing page metadata supports:
{
  metadata: {
    seoTitle?: string;           // Page title
    seoDescription?: string;     // Meta description
    shareImageUrl?: string;      // OG/Twitter image
  }
}

Future Configuration UI

The landing page editor will include an SEO panel:
┌─────────────────────────────────────────────────┐
│  SEO Settings                                   │
├─────────────────────────────────────────────────┤
│  Page Title                                     │
│  ┌─────────────────────────────────────────┐   │
│  │ Limited Edition Sneaker Drop            │   │
│  └─────────────────────────────────────────┘   │
│  55 / 60 characters                            │
│                                                 │
│  Meta Description                              │
│  ┌─────────────────────────────────────────┐   │
│  │ Join the queue for exclusive access...  │   │
│  │                                         │   │
│  └─────────────────────────────────────────┘   │
│  142 / 160 characters                          │
│                                                 │
│  Share Image                                   │
│  ┌─────────────────────────────────────────┐   │
│  │ [Upload] or drag image here             │   │
│  │ 1200x630px recommended                  │   │
│  └─────────────────────────────────────────┘   │
│                                                 │
│  Preview                                        │
│  ┌─────────────────────────────────────────┐   │
│  │ Google | Facebook | Twitter             │   │
│  │ [Search result preview]                 │   │
│  └─────────────────────────────────────────┘   │
│                                                 │
└─────────────────────────────────────────────────┘

Testing SEO

Validation Tools

Common Issues

IssueCauseSolution
Wrong image on shareCacheUse debug tools to clear cache
Missing descriptionNo meta tagAdd meta description
Title truncatedToo longKeep under 60 characters
Image not showingWrong size or URLUse 1200x630px, absolute URL

Current Workarounds

Manual Meta Tags

Until the configuration UI is available, meta tags can be set through the creative document system:
{
  creativeDocument: {
    schemaVersion: 1,
    kind: "landing-page",
    editor: "section-builder",
    body: {
      // Page content
    }
  },
  metadata: {
    seoTitle: "Your Custom Title",
    seoDescription: "Your custom description for search results.",
    shareImageUrl: "https://your-cdn.com/share-image.jpg"
  }
}

SDK Integration

For pages using the SDK, control meta tags in your application:
// Using React Helmet or Next.js Head
<Head>
  <title>Limited Edition Sneaker Drop | Your Brand</title>
  <meta name="description" content="Join the queue..." />
  <meta property="og:title" content="Limited Edition Sneaker Drop" />
  <meta property="og:image" content="https://..." />
</Head>

Best Practices

Writing Effective Titles

DoDon’t
Include primary keywordKeyword stuff
Add brand nameUse generic titles
Create urgency when appropriateBe misleading
Be specificBe vague
Good: “Limited Edition Air Max Release | Nike” Bad: “Best Sneakers - Buy Now - Limited - Exclusive - Sale”

Writing Effective Descriptions

DoDon’t
Summarize the pageRepeat the title
Include call-to-actionBe purely promotional
Mention unique valueUse generic copy
Match search intentMislead about content
Good: “Join the queue for exclusive access to Nike’s limited edition Air Max release. First 500 entries guaranteed. Launching March 15, 2024.” Bad: “Click here to see our amazing products. We have the best deals and lowest prices!”

Next Steps