Commit a6383745 by sujata

update compoent -homepage

1 parent 7c48c0ca
...@@ -62,6 +62,12 @@ ...@@ -62,6 +62,12 @@
"type": "component", "type": "component",
"repeatable": false, "repeatable": false,
"component": "shared.seo" "component": "shared.seo"
},
"AreasExpertiseTitle": {
"displayName": "AreasExpertiseTitle",
"type": "component",
"repeatable": false,
"component": "home.areas-expertise-title"
} }
} }
} }
{
"collectionName": "components_home_areas_expertise_titles",
"info": {
"displayName": "AreasExpertiseTitle"
},
"options": {},
"attributes": {
"Heading": {
"type": "component",
"repeatable": false,
"component": "layout.heading"
},
"Image": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
}
}
}
...@@ -11,13 +11,6 @@ ...@@ -11,13 +11,6 @@
}, },
"Description": { "Description": {
"type": "text" "type": "text"
},
"Image": {
"allowedTypes": [
"images"
],
"type": "media",
"multiple": false
} }
} }
} }
...@@ -14,12 +14,6 @@ ...@@ -14,12 +14,6 @@
}, },
"Description": { "Description": {
"type": "text" "type": "text"
},
"FAQList": {
"displayName": "FAQList",
"type": "component",
"repeatable": true,
"component": "layout.faq-list"
} }
} }
} }
...@@ -303,7 +303,6 @@ export interface LayoutHeading extends Struct.ComponentSchema { ...@@ -303,7 +303,6 @@ export interface LayoutHeading extends Struct.ComponentSchema {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Subtitle: Schema.Attribute.String; Subtitle: Schema.Attribute.String;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
FAQList: Schema.Attribute.Component<'layout.faq-list', true>;
}; };
} }
...@@ -442,7 +441,6 @@ export interface LayoutAreasExpertise extends Struct.ComponentSchema { ...@@ -442,7 +441,6 @@ export interface LayoutAreasExpertise extends Struct.ComponentSchema {
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images'>;
}; };
} }
...@@ -517,6 +515,17 @@ export interface HomeHome extends Struct.ComponentSchema { ...@@ -517,6 +515,17 @@ export interface HomeHome extends Struct.ComponentSchema {
}; };
} }
export interface HomeAreasExpertiseTitle extends Struct.ComponentSchema {
collectionName: 'components_home_areas_expertise_titles';
info: {
displayName: 'AreasExpertiseTitle';
};
attributes: {
Heading: Schema.Attribute.Component<'layout.heading', false>;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
};
}
export interface DynamicZoneText extends Struct.ComponentSchema { export interface DynamicZoneText extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_texts'; collectionName: 'components_dynamic_zone_texts';
info: { info: {
...@@ -793,6 +802,7 @@ declare module '@strapi/strapi' { ...@@ -793,6 +802,7 @@ declare module '@strapi/strapi' {
'home.knowledgeshack': HomeKnowledgeshack; 'home.knowledgeshack': HomeKnowledgeshack;
'home.industry': HomeIndustry; 'home.industry': HomeIndustry;
'home.home': HomeHome; 'home.home': HomeHome;
'home.areas-expertise-title': HomeAreasExpertiseTitle;
'dynamic-zone.text': DynamicZoneText; 'dynamic-zone.text': DynamicZoneText;
'dynamic-zone.table': DynamicZoneTable; 'dynamic-zone.table': DynamicZoneTable;
'dynamic-zone.rules-list': DynamicZoneRulesList; 'dynamic-zone.rules-list': DynamicZoneRulesList;
......
...@@ -1457,6 +1457,10 @@ export interface ApiHomeHome extends Struct.SingleTypeSchema { ...@@ -1457,6 +1457,10 @@ export interface ApiHomeHome extends Struct.SingleTypeSchema {
Industry: Schema.Attribute.Component<'home.industry', true>; Industry: Schema.Attribute.Component<'home.industry', true>;
Clientel: Schema.Attribute.Component<'layout.clientel', true>; Clientel: Schema.Attribute.Component<'layout.clientel', true>;
seo: Schema.Attribute.Component<'shared.seo', false>; seo: Schema.Attribute.Component<'shared.seo', false>;
AreasExpertiseTitle: Schema.Attribute.Component<
'home.areas-expertise-title',
false
>;
createdAt: Schema.Attribute.DateTime; createdAt: Schema.Attribute.DateTime;
updatedAt: Schema.Attribute.DateTime; updatedAt: Schema.Attribute.DateTime;
publishedAt: Schema.Attribute.DateTime; publishedAt: Schema.Attribute.DateTime;
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!