Add initial plugin implementation and development setup

This commit is contained in:
2025-09-13 17:06:45 +02:00
parent 45fe248bf3
commit 74cef91401
52 changed files with 16645 additions and 0 deletions

14
dev/app/layout.tsx Normal file
View File

@@ -0,0 +1,14 @@
import type { Metadata } from 'next'
export const metadata: Metadata = {
title: 'Payload Notifications Plugin Demo',
description: 'Demo environment for the @xtr-dev/payload-notifications plugin',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return children
}