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",
"info": {
"displayName": "CEO Message"
"displayName": "CEO Message",
"description": ""
},
"options": {},
"attributes": {
"Title": {
"type": "string"
},
"name": {
"Name": {
"type": "string"
},
"Text": {
"type": "string"
"type": "text"
}
}
}

View File

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

View File

@@ -14,7 +14,7 @@
"name": "Apache 2.0",
"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": {
"path": "/documentation",
@@ -656,7 +656,7 @@
"Title": {
"type": "string"
},
"name": {
"Name": {
"type": "string"
},
"Text": {

View File

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