Updated the structure of the About page

This commit is contained in:
Tiago Ribeiro
2024-03-14 18:37:52 +00:00
parent e10f368fe4
commit e3a6e5d551
4 changed files with 11 additions and 9 deletions

View File

@@ -1,18 +1,19 @@
{ {
"collectionName": "components_about_page_ceo_messages", "collectionName": "components_about_page_ceo_messages",
"info": { "info": {
"displayName": "CEO Message" "displayName": "CEO Message",
"description": ""
}, },
"options": {}, "options": {},
"attributes": { "attributes": {
"Title": { "Title": {
"type": "string" "type": "string"
}, },
"name": { "Name": {
"type": "string" "type": "string"
}, },
"Text": { "Text": {
"type": "string" "type": "text"
} }
} }
} }

View File

@@ -10,7 +10,7 @@
"type": "string" "type": "string"
}, },
"Text": { "Text": {
"type": "string" "type": "text"
} }
} }
} }

View File

@@ -14,7 +14,7 @@
"name": "Apache 2.0", "name": "Apache 2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0.html" "url": "https://www.apache.org/licenses/LICENSE-2.0.html"
}, },
"x-generation-date": "2024-03-14T17:55:21.780Z" "x-generation-date": "2024-03-14T18:34:06.485Z"
}, },
"x-strapi-config": { "x-strapi-config": {
"path": "/documentation", "path": "/documentation",
@@ -656,7 +656,7 @@
"Title": { "Title": {
"type": "string" "type": "string"
}, },
"name": { "Name": {
"type": "string" "type": "string"
}, },
"Text": { "Text": {

View File

@@ -17,11 +17,12 @@ export interface AboutPageCeoMessage extends Schema.Component {
collectionName: 'components_about_page_ceo_messages'; collectionName: 'components_about_page_ceo_messages';
info: { info: {
displayName: 'CEO Message'; displayName: 'CEO Message';
description: '';
}; };
attributes: { attributes: {
Title: Attribute.String; Title: Attribute.String;
name: Attribute.String; Name: Attribute.String;
Text: Attribute.String; Text: Attribute.Text;
}; };
} }
@@ -33,7 +34,7 @@ export interface SectionTitleWithText extends Schema.Component {
}; };
attributes: { attributes: {
Title: Attribute.String; Title: Attribute.String;
Text: Attribute.String; Text: Attribute.Text;
}; };
} }