initial commit after project creation

This commit is contained in:
Gerhard Scheikl
2026-04-01 09:38:50 +02:00
commit b02af637d4
292 changed files with 61408 additions and 0 deletions

View File

@@ -0,0 +1,62 @@
export const ScrollShowcaseTemplate = {
label: "Scroll Showcase",
name: "scrollShowcase",
fields: [
{
type: "object",
label: "Showcase Items",
name: "showcaseItems",
list: true,
ui: {
defaultItem: {
title: "Title",
image: "/img/rico-replacement.jpg",
content: {
type: "root",
children: [
{
type: "p",
children: [
{
type: "text",
text: "Default Text. Edit me!",
},
],
},
],
},
useAsSubsection: false,
},
itemProps: (item) => {
return {
label: item.title,
};
},
},
fields: [
{
type: "image",
label: "Image",
name: "image",
},
{
type: "string",
label: "Title",
name: "title",
},
{
type: "boolean",
label: "Use as Subsection",
name: "useAsSubsection",
},
{
type: "rich-text",
label: "Content",
name: "content",
},
],
},
],
};
export default ScrollShowcaseTemplate;