feat: Next 16 + Payload 3 scaffold with Kaniko CI and Swarm deploy (#1)
Some checks failed
ci/woodpecker/push/web Pipeline failed

Co-authored-by: Jason Woltje <jason@diversecanvas.com>
Co-committed-by: Jason Woltje <jason@diversecanvas.com>
This commit was merged in pull request #1.
This commit is contained in:
2026-04-14 03:21:17 +00:00
committed by jason.woltje
parent c800bef739
commit 8c5a25e976
51 changed files with 9353 additions and 0 deletions

33
src/globals/Contact.ts Normal file
View File

@@ -0,0 +1,33 @@
import type { GlobalConfig } from "payload";
export const Contact: GlobalConfig = {
slug: "contact",
access: { read: () => true },
fields: [
{
name: "availabilityBadge",
type: "text",
defaultValue: "Accepting new inquiries",
},
{ name: "timezoneLabel", type: "text", defaultValue: "America/Chicago" },
{ name: "directEmail", type: "email" },
{
name: "socialLinks",
type: "array",
fields: [
{ name: "label", type: "text", required: true },
{ name: "href", type: "text", required: true },
{ name: "icon", type: "text" },
],
},
{
name: "newsletterEnabled",
type: "checkbox",
defaultValue: false,
admin: {
description:
"Enable the newsletter subscribe UI. Keep false until Mautic is deployed.",
},
},
],
};