All checks were successful
ci/woodpecker/push/web Pipeline was successful
Co-authored-by: Jason Woltje <jason@diversecanvas.com> Co-committed-by: Jason Woltje <jason@diversecanvas.com>
29 lines
937 B
TypeScript
29 lines
937 B
TypeScript
import type { GlobalConfig } from "payload";
|
|
|
|
export const SEO: GlobalConfig = {
|
|
slug: "seo",
|
|
access: { read: () => true },
|
|
admin: { group: "Site" },
|
|
fields: [
|
|
{ name: "siteName", type: "text", defaultValue: "Jason Woltje" },
|
|
{ name: "defaultTitle", type: "text", defaultValue: "Jason Woltje" },
|
|
{ name: "titleTemplate", type: "text", defaultValue: "%s — Jason Woltje" },
|
|
{
|
|
name: "defaultDescription",
|
|
type: "textarea",
|
|
defaultValue:
|
|
"A multidisciplinary architect of digital ecosystems. Engineering growth through technological mastery and strategic leadership.",
|
|
},
|
|
{ name: "defaultOgImage", type: "upload", relationTo: "media" },
|
|
{ name: "twitterHandle", type: "text" },
|
|
{
|
|
name: "jsonLdPerson",
|
|
type: "json",
|
|
admin: {
|
|
description:
|
|
"Schema.org Person JSON-LD. Injected verbatim into the home page <head>.",
|
|
},
|
|
},
|
|
],
|
|
};
|