We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
SEO titles and meta descriptions for each page are pulled from Payload's Pages collection.
Pages
Metadata is exported as such in each page's code:
import { Metadata } from "next"; import { getPageFromCMS } from "@/lib/getPageFromCMS"; export async function generateMetadata(): Promise<Metadata> { const page = await getPageFromCMS("page-slug-here"); return { ...(page && { title: page.title, description: page.seoDescription, }), }; }
SEO title and description are respectively pulled from the title and description fields of Payload's Clubs or Resources collection.
title
description
Clubs
Resources