Commit 4faad086 by sujata

virtual services section

1 parent 208373a9
...@@ -9,19 +9,6 @@ ...@@ -9,19 +9,6 @@
"Title": { "Title": {
"type": "string" "type": "string"
}, },
"Image": {
"type": "media",
"multiple": false,
"required": false,
"allowedTypes": [
"images"
]
},
"CTA": {
"type": "component",
"repeatable": false,
"component": "cta.cta"
},
"Subtitle": { "Subtitle": {
"type": "string" "type": "string"
}, },
...@@ -31,6 +18,11 @@ ...@@ -31,6 +18,11 @@
"preset": "default" "preset": "default"
}, },
"customField": "plugin::ckeditor5.CKEditor" "customField": "plugin::ckeditor5.CKEditor"
},
"CTA": {
"type": "component",
"repeatable": false,
"component": "cta.cta"
} }
} }
} }
...@@ -596,8 +596,6 @@ export interface DynamicZoneBackground extends Struct.ComponentSchema { ...@@ -596,8 +596,6 @@ export interface DynamicZoneBackground extends Struct.ComponentSchema {
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Image: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', false>;
Subtitle: Schema.Attribute.String; Subtitle: Schema.Attribute.String;
Content: Schema.Attribute.RichText & Content: Schema.Attribute.RichText &
Schema.Attribute.CustomField< Schema.Attribute.CustomField<
...@@ -606,6 +604,7 @@ export interface DynamicZoneBackground extends Struct.ComponentSchema { ...@@ -606,6 +604,7 @@ export interface DynamicZoneBackground extends Struct.ComponentSchema {
preset: 'default'; preset: 'default';
} }
>; >;
CTA: Schema.Attribute.Component<'cta.cta', false>;
}; };
} }
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!