Commit d62ee550 by sujata

chnages in client services page

1 parent a4a0fc0c
{ {
"collectionName": "components_layout_technicalexp_tabs", "collectionName": "components_layout_technicalexp_tabs",
"info": { "info": {
"displayName": "TechnicalexpTab" "displayName": "TechnicalexpTab",
"description": ""
}, },
"options": {}, "options": {},
"attributes": { "attributes": {
...@@ -10,6 +11,16 @@ ...@@ -10,6 +11,16 @@
}, },
"Description": { "Description": {
"type": "text" "type": "text"
},
"Image": {
"allowedTypes": [
"images",
"files",
"videos",
"audios"
],
"type": "media",
"multiple": false
} }
} }
} }
...@@ -110,602 +110,602 @@ export interface SharedMedia extends Struct.ComponentSchema { ...@@ -110,602 +110,602 @@ export interface SharedMedia extends Struct.ComponentSchema {
}; };
} }
export interface HomePeople extends Struct.ComponentSchema { export interface PeopleTeamMember extends Struct.ComponentSchema {
collectionName: 'components_home_people'; collectionName: 'components_people_team_members';
info: { info: {
displayName: 'People'; displayName: 'TeamMember';
description: ''; description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.String; Name: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.Text; Linkdin: Schema.Attribute.String & Schema.Attribute.Required;
Image: Schema.Attribute.Media<'images'>; Image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
peoplelist: Schema.Attribute.Component<'people.people-list', true>; Designation: Schema.Attribute.String & Schema.Attribute.Required;
}; };
} }
export interface HomeKnowlegeTab extends Struct.ComponentSchema { export interface PeopleTeamLeads extends Struct.ComponentSchema {
collectionName: 'components_home_knowlege_tabs'; collectionName: 'components_people_team_leads';
info: { info: {
displayName: 'KnowlegeTab'; displayName: 'Team Leads';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Name: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.Text; Designation: Schema.Attribute.String & Schema.Attribute.Required;
CTA: Schema.Attribute.Component<'cta.cta', false>; Image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
Linkdin: Schema.Attribute.String & Schema.Attribute.Required;
}; };
} }
export interface HomeKnowledgeshack extends Struct.ComponentSchema { export interface PeoplePeopleList extends Struct.ComponentSchema {
collectionName: 'components_home_knowledgeshacks'; collectionName: 'components_people_people_lists';
info: { info: {
displayName: 'Knowledgeshack'; displayName: 'people-list';
description: ''; description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.String; heading: Schema.Attribute.String;
Description: Schema.Attribute.String; description: Schema.Attribute.String;
Image: Schema.Attribute.Media<'images'>;
}; };
} }
export interface HomeIndustry extends Struct.ComponentSchema { export interface PeopleOverview extends Struct.ComponentSchema {
collectionName: 'components_home_industries'; collectionName: 'components_people_overviews';
info: { info: {
displayName: 'Industry'; displayName: 'Overview';
description: ''; description: '';
}; };
attributes: { attributes: {
Subtitle: Schema.Attribute.String; Subtitle: Schema.Attribute.String;
Title: Schema.Attribute.String & Schema.Attribute.Required; Title: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images'>; Image: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', true>; Description: Schema.Attribute.Text;
}; };
} }
export interface HomeHome extends Struct.ComponentSchema { export interface PeopleAdvisoryBoard extends Struct.ComponentSchema {
collectionName: 'components_home_homes'; collectionName: 'components_people_advisory_boards';
info: { info: {
displayName: 'Home Banner'; displayName: 'Advisory Board';
description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String & Schema.Attribute.Required; Name: Schema.Attribute.String & Schema.Attribute.Required;
Subtitle: Schema.Attribute.String; Description: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.Text & Schema.Attribute.Required; Image: Schema.Attribute.Media<'images'>;
Mobilebanner: Schema.Attribute.Media<'images'>;
Desktopbanner: Schema.Attribute.Media<'images'>;
BackgroundBanner: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', true>;
}; };
} }
export interface HomeAreasExpertiseTitle extends Struct.ComponentSchema { export interface LayoutWhatwedo extends Struct.ComponentSchema {
collectionName: 'components_home_areas_expertise_titles'; collectionName: 'components_layout_whatwedos';
info: { info: {
displayName: 'AreasExpertiseTitle'; displayName: 'Whatwedo';
description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.Component<'layout.heading', false>; Image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>; Title: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.Text;
CTA: Schema.Attribute.Component<'cta.cta', false>;
}; };
} }
export interface HomeAreaExpertiselists extends Struct.ComponentSchema { export interface LayoutWeofferList extends Struct.ComponentSchema {
collectionName: 'components_home_area_expertiselists'; collectionName: 'components_layout_weoffer_lists';
info: { info: {
displayName: 'AreaExpertiselists'; displayName: 'WeofferList';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Button: Schema.Attribute.Component<'cta.cta', false>;
ProductList: Schema.Attribute.Component<'layout.product-list', true>;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
}; };
} }
export interface DynamicZoneWhatWedoBanner extends Struct.ComponentSchema { export interface LayoutWeOffer extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_what_wedo_banners'; collectionName: 'components_layout_we_offers';
info: { info: {
displayName: 'WhatWedoBanner'; displayName: 'WeOffer';
description: '';
}; };
attributes: { attributes: {
list: Schema.Attribute.Component<'dynamic-zone.list', true>; Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
Title: Schema.Attribute.String;
Description: Schema.Attribute.Text;
CTA: Schema.Attribute.Component<'cta.cta', false>; CTA: Schema.Attribute.Component<'cta.cta', false>;
BackgroundBanner: Schema.Attribute.Media<
'images' | 'files' | 'videos' | 'audios'
>;
Heading: Schema.Attribute.Component<'layout.heading', false>;
}; };
} }
export interface DynamicZoneWeOfferSec extends Struct.ComponentSchema { export interface LayoutTechnicalexpertise extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_we_offer_secs'; collectionName: 'components_layout_technicalexpertises';
info: { info: {
displayName: 'WeOfferSec'; displayName: 'Technicalexpertise';
description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.String; SectionTitle: Schema.Attribute.String;
Description: Schema.Attribute.Text; Subtitle: Schema.Attribute.String;
WeOfferList: Schema.Attribute.Component<'layout.weoffer-list', true>; Technicallist: Schema.Attribute.Component<'layout.technicalexp-tab', true>;
}; };
} }
export interface DynamicZoneVariantcard extends Struct.ComponentSchema { export interface LayoutTechnicalexpTab extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_variantcards'; collectionName: 'components_layout_technicalexp_tabs';
info: { info: {
displayName: 'Variantcard'; displayName: 'TechnicalexpTab';
description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.Component<'layout.heading', false>; Title: Schema.Attribute.String;
carddetails: Schema.Attribute.Component<'layout.card-details', true>; Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
}; };
} }
export interface DynamicZoneText extends Struct.ComponentSchema { export interface LayoutTab extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_texts'; collectionName: 'components_layout_tabs';
info: { info: {
displayName: 'Content'; displayName: 'Tab';
description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.String; sectionTitle: Schema.Attribute.String;
Subtitle: Schema.Attribute.Text; shortDescription: Schema.Attribute.Text;
Description: Schema.Attribute.RichText & Image: Schema.Attribute.Media<'images'>;
Schema.Attribute.CustomField< CTA: Schema.Attribute.Component<'cta.cta', false>;
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
export interface DynamicZoneTable extends Struct.ComponentSchema { export interface LayoutServicelist extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_tables'; collectionName: 'components_layout_servicelists';
info: { info: {
displayName: 'table'; displayName: 'Servicelist';
}; };
attributes: { attributes: {
tableData: Schema.Attribute.RichText & Title: Schema.Attribute.String;
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
export interface DynamicZoneRulesList extends Struct.ComponentSchema { export interface LayoutProductList extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_rules_lists'; collectionName: 'components_layout_product_lists';
info: { info: {
displayName: 'RulesList'; displayName: 'ProductList';
description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
details: Schema.Attribute.Component<'dynamic-zone.details', false>; Button: Schema.Attribute.Component<'cta.cta', false>;
}; };
} }
export interface DynamicZoneRulesApplication extends Struct.ComponentSchema { export interface LayoutPageBanner extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_rules_applications'; collectionName: 'components_layout_page_banners';
info: { info: {
displayName: 'RulesApplication'; displayName: 'PageBanner';
description: ''; description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.String; Heading: Schema.Attribute.String;
Subheading: Schema.Attribute.String; Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images' | 'files'>;
RuleList: Schema.Attribute.Component<'dynamic-zone.rules-list', true>;
}; };
} }
export interface DynamicZoneList extends Struct.ComponentSchema { export interface LayoutOverview extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_lists'; collectionName: 'components_layout_overviews';
info: { info: {
displayName: 'List'; displayName: 'Overview';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Description: Schema.Attribute.RichText & Subtitle: Schema.Attribute.Text;
Content: Schema.Attribute.RichText &
Schema.Attribute.CustomField< Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor', 'plugin::ckeditor5.CKEditor',
{ {
preset: 'default'; preset: 'default';
} }
>; >;
CTA: Schema.Attribute.Component<'cta.cta', false>;
}; };
} }
export interface DynamicZoneKeyfeature extends Struct.ComponentSchema { export interface LayoutIndustryOverview extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_keyfeatures'; collectionName: 'components_layout_industry_overviews';
info: {
displayName: 'KeyFeature';
description: '';
};
attributes: {
sectionTitle: Schema.Attribute.String;
SectionSubtitle: Schema.Attribute.String;
KeyFeatureList: Schema.Attribute.Component<'dynamic-zone.fact-list', true>;
};
}
export interface DynamicZoneImage extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_images';
info: { info: {
displayName: 'Image'; displayName: 'IndustryOverview';
description: ''; description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.String; subtitle: Schema.Attribute.String;
title: Schema.Attribute.String;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
DesktopImg: Schema.Attribute.Media< Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
'images' | 'files' | 'videos' | 'audios'
>;
MobileImg: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
}; };
} }
export interface DynamicZoneFaq extends Struct.ComponentSchema { export interface LayoutHeading extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_faqs'; collectionName: 'components_layout_headings';
info: { info: {
displayName: 'FAQ'; displayName: 'heading';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Description: Schema.Attribute.Text; Subtitle: Schema.Attribute.String;
FAQList: Schema.Attribute.Component<'dynamic-zone.faq-list', true>; Description: Schema.Attribute.RichText &
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
export interface DynamicZoneFaqList extends Struct.ComponentSchema { export interface LayoutFunctionalAreas extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_faq_lists'; collectionName: 'components_layout_functional_areas';
info: { info: {
displayName: 'FaqList'; displayName: 'FunctionalAreas';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.Text; Icon: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
Description: Schema.Attribute.Text & Schema.Attribute.Required;
}; };
} }
export interface DynamicZoneFacts extends Struct.ComponentSchema { export interface LayoutFaqList extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_facts'; collectionName: 'components_layout_faq_lists';
info: { info: {
displayName: 'Facts'; displayName: 'FAQList';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Question: Schema.Attribute.String;
Subtitle: Schema.Attribute.Text; Description: Schema.Attribute.RichText &
FactList: Schema.Attribute.Component<'dynamic-zone.fact-list', true>; Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
export interface DynamicZoneFactList extends Struct.ComponentSchema { export interface LayoutCtaBanner extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_fact_lists'; collectionName: 'components_layout_cta_banners';
info: { info: {
displayName: 'FactList'; displayName: 'CTABanner';
description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Heading: Schema.Attribute.Component<'layout.heading', false>;
Description: Schema.Attribute.Text;
Icon: Schema.Attribute.Media<'images'>;
}; };
} }
export interface DynamicZoneElementTwo extends Struct.ComponentSchema { export interface LayoutConversionCode extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_element_twos'; collectionName: 'components_layout_conversion_codes';
info: { info: {
displayName: 'ElementTwo'; displayName: 'ConversionCode';
description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.Component<'layout.heading', false>; scriptcode: Schema.Attribute.Text;
ElementList: Schema.Attribute.Component<'dynamic-zone.element-list', true>; noscriptcode: Schema.Attribute.Text;
}; };
} }
export interface DynamicZoneElementOne extends Struct.ComponentSchema { export interface LayoutClientel extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_element_ones'; collectionName: 'components_layout_clientels';
info: { info: {
displayName: 'ElementOne'; displayName: 'Clientel';
description: ''; description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.Component<'layout.heading', false>; logos: Schema.Attribute.Media<'images', true>;
ElementList: Schema.Attribute.Component<'dynamic-zone.element-list', true>;
}; };
} }
export interface DynamicZoneElementList extends Struct.ComponentSchema { export interface LayoutCfolist extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_element_lists'; collectionName: 'components_layout_cfolists';
info: { info: {
displayName: 'ElementList'; displayName: 'cfolist';
}; };
attributes: { attributes: {
StepHeading: Schema.Attribute.String & Schema.Attribute.Required; Title: Schema.Attribute.String;
StepDescription: Schema.Attribute.String & Schema.Attribute.Required; Icon: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
StepImg: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
}; };
} }
export interface DynamicZoneDownloadBtn extends Struct.ComponentSchema { export interface LayoutCfoService extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_download_btns'; collectionName: 'components_layout_cfo_services';
info: { info: {
displayName: 'DownloadBtn'; displayName: 'CFOService';
description: ''; description: '';
}; };
attributes: { attributes: {
Subtitle: Schema.Attribute.String; IndustryServiceList: Schema.Attribute.Component<
Title: Schema.Attribute.String; 'layout.cfo-service-tab',
Description: Schema.Attribute.String; true
CTA: Schema.Attribute.Component<'cta.cta', false>; >;
}; };
} }
export interface DynamicZoneDetails extends Struct.ComponentSchema { export interface LayoutCfoServiceTab extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_details'; collectionName: 'components_layout_cfo_service_tabs';
info: { info: {
displayName: 'Details'; displayName: 'CFOServiceTab';
description: '';
}; };
attributes: { attributes: {
Details: Schema.Attribute.RichText & Title: Schema.Attribute.String;
Schema.Attribute.CustomField< CfoList: Schema.Attribute.Component<'layout.cfolist', true>;
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
export interface DynamicZoneCard extends Struct.ComponentSchema { export interface LayoutCard extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_cards'; collectionName: 'components_layout_cards';
info: { info: {
displayName: 'card'; displayName: 'card';
description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.Component<'layout.heading', false>; Heading: Schema.Attribute.Component<'layout.heading', false>;
carddetails: Schema.Attribute.Component<'layout.card-details', true>;
}; };
} }
export interface DynamicZoneBackground extends Struct.ComponentSchema { export interface LayoutCardDetails extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_backgrounds'; collectionName: 'components_layout_card_details';
info: { info: {
displayName: 'RightsideImg'; displayName: 'card-details';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Subtitle: Schema.Attribute.String; Description: Schema.Attribute.RichText &
Content: Schema.Attribute.RichText &
Schema.Attribute.CustomField< Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor', 'plugin::ckeditor5.CKEditor',
{ {
preset: 'default'; preset: 'default';
} }
>; >;
CTA: Schema.Attribute.Component<'cta.cta', false>;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>; Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
}; };
} }
export interface DynamicZoneAbout extends Struct.ComponentSchema { export interface LayoutAreasExpertise extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_abouts'; collectionName: 'components_layout_areas_expertises';
info: { info: {
displayName: 'LeftsideImg'; displayName: 'AreasExpertise';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Subtitle: Schema.Attribute.String; Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', false>;
Content: Schema.Attribute.RichText &
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
export interface LayoutWhatwedo extends Struct.ComponentSchema { export interface HomePeople extends Struct.ComponentSchema {
collectionName: 'components_layout_whatwedos'; collectionName: 'components_home_people';
info: { info: {
displayName: 'Whatwedo'; displayName: 'People';
description: ''; description: '';
}; };
attributes: { attributes: {
Image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required; Heading: Schema.Attribute.String;
Title: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
CTA: Schema.Attribute.Component<'cta.cta', false>; Image: Schema.Attribute.Media<'images'>;
peoplelist: Schema.Attribute.Component<'people.people-list', true>;
}; };
} }
export interface LayoutWeofferList extends Struct.ComponentSchema { export interface HomeKnowlegeTab extends Struct.ComponentSchema {
collectionName: 'components_layout_weoffer_lists'; collectionName: 'components_home_knowlege_tabs';
info: { info: {
displayName: 'WeofferList'; displayName: 'KnowlegeTab';
description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Button: Schema.Attribute.Component<'cta.cta', false>;
ProductList: Schema.Attribute.Component<'layout.product-list', true>;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
CTA: Schema.Attribute.Component<'cta.cta', false>;
}; };
} }
export interface LayoutWeOffer extends Struct.ComponentSchema { export interface HomeKnowledgeshack extends Struct.ComponentSchema {
collectionName: 'components_layout_we_offers'; collectionName: 'components_home_knowledgeshacks';
info: { info: {
displayName: 'WeOffer'; displayName: 'Knowledgeshack';
description: '';
}; };
attributes: { attributes: {
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>; Heading: Schema.Attribute.String;
Title: Schema.Attribute.String; Description: Schema.Attribute.String;
Description: Schema.Attribute.Text; Image: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', false>;
}; };
} }
export interface LayoutTechnicalexpertise extends Struct.ComponentSchema { export interface HomeIndustry extends Struct.ComponentSchema {
collectionName: 'components_layout_technicalexpertises'; collectionName: 'components_home_industries';
info: { info: {
displayName: 'Technicalexpertise'; displayName: 'Industry';
description: '';
}; };
attributes: { attributes: {
SectionTitle: Schema.Attribute.String;
Subtitle: Schema.Attribute.String; Subtitle: Schema.Attribute.String;
Technicallist: Schema.Attribute.Component<'layout.technicalexp-tab', true>; Title: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', true>;
}; };
} }
export interface LayoutTechnicalexpTab extends Struct.ComponentSchema { export interface HomeHome extends Struct.ComponentSchema {
collectionName: 'components_layout_technicalexp_tabs'; collectionName: 'components_home_homes';
info: { info: {
displayName: 'TechnicalexpTab'; displayName: 'Home Banner';
description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.Text; Subtitle: Schema.Attribute.String;
Description: Schema.Attribute.Text & Schema.Attribute.Required;
Mobilebanner: Schema.Attribute.Media<'images'>;
Desktopbanner: Schema.Attribute.Media<'images'>;
BackgroundBanner: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', true>;
}; };
} }
export interface LayoutTab extends Struct.ComponentSchema { export interface HomeAreasExpertiseTitle extends Struct.ComponentSchema {
collectionName: 'components_layout_tabs'; collectionName: 'components_home_areas_expertise_titles';
info: { info: {
displayName: 'Tab'; displayName: 'AreasExpertiseTitle';
}; };
attributes: { attributes: {
sectionTitle: Schema.Attribute.String; Heading: Schema.Attribute.Component<'layout.heading', false>;
shortDescription: Schema.Attribute.Text; Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
Image: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', false>;
}; };
} }
export interface LayoutServicelist extends Struct.ComponentSchema { export interface HomeAreaExpertiselists extends Struct.ComponentSchema {
collectionName: 'components_layout_servicelists'; collectionName: 'components_home_area_expertiselists';
info: { info: {
displayName: 'Servicelist'; displayName: 'AreaExpertiselists';
description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
}; };
} }
export interface LayoutProductList extends Struct.ComponentSchema { export interface CtaCta extends Struct.ComponentSchema {
collectionName: 'components_layout_product_lists'; collectionName: 'components_cta_ctas';
info: { info: {
displayName: 'ProductList'; displayName: 'CTA';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; text: Schema.Attribute.String &
Description: Schema.Attribute.Text; Schema.Attribute.Required &
Button: Schema.Attribute.Component<'cta.cta', false>; Schema.Attribute.DefaultTo<'text'>;
URL: Schema.Attribute.String;
target: Schema.Attribute.Enumeration<
['_blank', '_parent', '_self', '_top']
>;
varient: Schema.Attribute.Enumeration<['outline', 'fill']>;
}; };
} }
export interface LayoutPageBanner extends Struct.ComponentSchema { export interface DynamicZoneWhatWedoBanner extends Struct.ComponentSchema {
collectionName: 'components_layout_page_banners'; collectionName: 'components_dynamic_zone_what_wedo_banners';
info: { info: {
displayName: 'PageBanner'; displayName: 'WhatWedoBanner';
description: '';
};
attributes: {
list: Schema.Attribute.Component<'dynamic-zone.list', true>;
CTA: Schema.Attribute.Component<'cta.cta', false>;
BackgroundBanner: Schema.Attribute.Media<
'images' | 'files' | 'videos' | 'audios'
>;
Heading: Schema.Attribute.Component<'layout.heading', false>;
};
}
export interface DynamicZoneWeOfferSec extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_we_offer_secs';
info: {
displayName: 'WeOfferSec';
description: ''; description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.String; Heading: Schema.Attribute.String;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
Description: Schema.Attribute.Text; Description: Schema.Attribute.Text;
WeOfferList: Schema.Attribute.Component<'layout.weoffer-list', true>;
}; };
} }
export interface LayoutOverview extends Struct.ComponentSchema { export interface DynamicZoneVariantcard extends Struct.ComponentSchema {
collectionName: 'components_layout_overviews'; collectionName: 'components_dynamic_zone_variantcards';
info: { info: {
displayName: 'Overview'; displayName: 'Variantcard';
};
attributes: {
Heading: Schema.Attribute.Component<'layout.heading', false>;
carddetails: Schema.Attribute.Component<'layout.card-details', true>;
};
}
export interface DynamicZoneText extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_texts';
info: {
displayName: 'Content';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Heading: Schema.Attribute.String;
Subtitle: Schema.Attribute.Text; Subtitle: Schema.Attribute.Text;
Content: Schema.Attribute.RichText & Description: Schema.Attribute.RichText &
Schema.Attribute.CustomField< Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor', 'plugin::ckeditor5.CKEditor',
{ {
preset: 'default'; preset: 'default';
} }
>; >;
CTA: Schema.Attribute.Component<'cta.cta', false>;
}; };
} }
export interface LayoutIndustryOverview extends Struct.ComponentSchema { export interface DynamicZoneTable extends Struct.ComponentSchema {
collectionName: 'components_layout_industry_overviews'; collectionName: 'components_dynamic_zone_tables';
info: { info: {
displayName: 'IndustryOverview'; displayName: 'table';
description: '';
}; };
attributes: { attributes: {
subtitle: Schema.Attribute.String; tableData: Schema.Attribute.RichText &
title: Schema.Attribute.String; Schema.Attribute.CustomField<
Description: Schema.Attribute.Text; 'plugin::ckeditor5.CKEditor',
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>; {
preset: 'default';
}
>;
}; };
} }
export interface LayoutHeading extends Struct.ComponentSchema { export interface DynamicZoneRulesList extends Struct.ComponentSchema {
collectionName: 'components_layout_headings'; collectionName: 'components_dynamic_zone_rules_lists';
info: { info: {
displayName: 'heading'; displayName: 'RulesList';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Subtitle: Schema.Attribute.String; Description: Schema.Attribute.Text;
Description: Schema.Attribute.RichText & details: Schema.Attribute.Component<'dynamic-zone.details', false>;
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
}; };
} }
export interface LayoutFunctionalAreas extends Struct.ComponentSchema { export interface DynamicZoneRulesApplication extends Struct.ComponentSchema {
collectionName: 'components_layout_functional_areas'; collectionName: 'components_dynamic_zone_rules_applications';
info: { info: {
displayName: 'FunctionalAreas'; displayName: 'RulesApplication';
description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String & Schema.Attribute.Required; Heading: Schema.Attribute.String;
Icon: Schema.Attribute.Media<'images'> & Schema.Attribute.Required; Subheading: Schema.Attribute.String;
Description: Schema.Attribute.Text & Schema.Attribute.Required; Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images' | 'files'>;
RuleList: Schema.Attribute.Component<'dynamic-zone.rules-list', true>;
}; };
} }
export interface LayoutFaqList extends Struct.ComponentSchema { export interface DynamicZoneList extends Struct.ComponentSchema {
collectionName: 'components_layout_faq_lists'; collectionName: 'components_dynamic_zone_lists';
info: { info: {
displayName: 'FAQList'; displayName: 'List';
description: '';
}; };
attributes: { attributes: {
Question: Schema.Attribute.String; Title: Schema.Attribute.String;
Description: Schema.Attribute.RichText & Description: Schema.Attribute.RichText &
Schema.Attribute.CustomField< Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor', 'plugin::ckeditor5.CKEditor',
...@@ -716,197 +716,199 @@ export interface LayoutFaqList extends Struct.ComponentSchema { ...@@ -716,197 +716,199 @@ export interface LayoutFaqList extends Struct.ComponentSchema {
}; };
} }
export interface LayoutCtaBanner extends Struct.ComponentSchema { export interface DynamicZoneKeyfeature extends Struct.ComponentSchema {
collectionName: 'components_layout_cta_banners'; collectionName: 'components_dynamic_zone_keyfeatures';
info: { info: {
displayName: 'CTABanner'; displayName: 'KeyFeature';
description: ''; description: '';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.Component<'layout.heading', false>; sectionTitle: Schema.Attribute.String;
SectionSubtitle: Schema.Attribute.String;
KeyFeatureList: Schema.Attribute.Component<'dynamic-zone.fact-list', true>;
}; };
} }
export interface LayoutConversionCode extends Struct.ComponentSchema { export interface DynamicZoneImage extends Struct.ComponentSchema {
collectionName: 'components_layout_conversion_codes'; collectionName: 'components_dynamic_zone_images';
info: { info: {
displayName: 'ConversionCode'; displayName: 'Image';
description: ''; description: '';
}; };
attributes: { attributes: {
scriptcode: Schema.Attribute.Text; Heading: Schema.Attribute.String;
noscriptcode: Schema.Attribute.Text; Description: Schema.Attribute.Text;
DesktopImg: Schema.Attribute.Media<
'images' | 'files' | 'videos' | 'audios'
>;
MobileImg: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
}; };
} }
export interface LayoutClientel extends Struct.ComponentSchema { export interface DynamicZoneFaq extends Struct.ComponentSchema {
collectionName: 'components_layout_clientels'; collectionName: 'components_dynamic_zone_faqs';
info: { info: {
displayName: 'Clientel'; displayName: 'FAQ';
description: ''; description: '';
}; };
attributes: { attributes: {
logos: Schema.Attribute.Media<'images', true>; Title: Schema.Attribute.String;
Description: Schema.Attribute.Text;
FAQList: Schema.Attribute.Component<'dynamic-zone.faq-list', true>;
}; };
} }
export interface LayoutCfolist extends Struct.ComponentSchema { export interface DynamicZoneFaqList extends Struct.ComponentSchema {
collectionName: 'components_layout_cfolists'; collectionName: 'components_dynamic_zone_faq_lists';
info: { info: {
displayName: 'cfolist'; displayName: 'FaqList';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
Icon: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>; Description: Schema.Attribute.Text;
}; };
} }
export interface LayoutCfoService extends Struct.ComponentSchema { export interface DynamicZoneFacts extends Struct.ComponentSchema {
collectionName: 'components_layout_cfo_services'; collectionName: 'components_dynamic_zone_facts';
info: { info: {
displayName: 'CFOService'; displayName: 'Facts';
description: '';
}; };
attributes: { attributes: {
IndustryServiceList: Schema.Attribute.Component< Title: Schema.Attribute.String;
'layout.cfo-service-tab', Subtitle: Schema.Attribute.Text;
true FactList: Schema.Attribute.Component<'dynamic-zone.fact-list', true>;
>;
}; };
} }
export interface LayoutCfoServiceTab extends Struct.ComponentSchema { export interface DynamicZoneFactList extends Struct.ComponentSchema {
collectionName: 'components_layout_cfo_service_tabs'; collectionName: 'components_dynamic_zone_fact_lists';
info: { info: {
displayName: 'CFOServiceTab'; displayName: 'FactList';
description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Title: Schema.Attribute.String;
CfoList: Schema.Attribute.Component<'layout.cfolist', true>; Description: Schema.Attribute.Text;
Icon: Schema.Attribute.Media<'images'>;
}; };
} }
export interface LayoutCard extends Struct.ComponentSchema { export interface DynamicZoneElementTwo extends Struct.ComponentSchema {
collectionName: 'components_layout_cards'; collectionName: 'components_dynamic_zone_element_twos';
info: { info: {
displayName: 'card'; displayName: 'ElementTwo';
}; };
attributes: { attributes: {
Heading: Schema.Attribute.Component<'layout.heading', false>; Heading: Schema.Attribute.Component<'layout.heading', false>;
ElementList: Schema.Attribute.Component<'dynamic-zone.element-list', true>;
}; };
} }
export interface LayoutCardDetails extends Struct.ComponentSchema { export interface DynamicZoneElementOne extends Struct.ComponentSchema {
collectionName: 'components_layout_card_details'; collectionName: 'components_dynamic_zone_element_ones';
info: { info: {
displayName: 'card-details'; displayName: 'ElementOne';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; Heading: Schema.Attribute.Component<'layout.heading', false>;
Description: Schema.Attribute.RichText & ElementList: Schema.Attribute.Component<'dynamic-zone.element-list', true>;
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
}; };
} }
export interface LayoutAreasExpertise extends Struct.ComponentSchema { export interface DynamicZoneElementList extends Struct.ComponentSchema {
collectionName: 'components_layout_areas_expertises'; collectionName: 'components_dynamic_zone_element_lists';
info: { info: {
displayName: 'AreasExpertise'; displayName: 'ElementList';
description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String; StepHeading: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.Text; StepDescription: Schema.Attribute.String & Schema.Attribute.Required;
StepImg: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
}; };
} }
export interface PeopleTeamMember extends Struct.ComponentSchema { export interface DynamicZoneDownloadBtn extends Struct.ComponentSchema {
collectionName: 'components_people_team_members'; collectionName: 'components_dynamic_zone_download_btns';
info: { info: {
displayName: 'TeamMember'; displayName: 'DownloadBtn';
description: ''; description: '';
}; };
attributes: { attributes: {
Name: Schema.Attribute.String & Schema.Attribute.Required; Subtitle: Schema.Attribute.String;
Linkdin: Schema.Attribute.String & Schema.Attribute.Required; Title: Schema.Attribute.String;
Image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required; Description: Schema.Attribute.String;
Designation: Schema.Attribute.String & Schema.Attribute.Required; CTA: Schema.Attribute.Component<'cta.cta', false>;
}; };
} }
export interface PeopleTeamLeads extends Struct.ComponentSchema { export interface DynamicZoneDetails extends Struct.ComponentSchema {
collectionName: 'components_people_team_leads'; collectionName: 'components_dynamic_zone_details';
info: { info: {
displayName: 'Team Leads'; displayName: 'Details';
}; };
attributes: { attributes: {
Name: Schema.Attribute.String & Schema.Attribute.Required; Details: Schema.Attribute.RichText &
Designation: Schema.Attribute.String & Schema.Attribute.Required; Schema.Attribute.CustomField<
Image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required; 'plugin::ckeditor5.CKEditor',
Linkdin: Schema.Attribute.String & Schema.Attribute.Required; {
preset: 'default';
}
>;
}; };
} }
export interface PeoplePeopleList extends Struct.ComponentSchema { export interface DynamicZoneCard extends Struct.ComponentSchema {
collectionName: 'components_people_people_lists'; collectionName: 'components_dynamic_zone_cards';
info: { info: {
displayName: 'people-list'; displayName: 'card';
description: ''; description: '';
}; };
attributes: { attributes: {
heading: Schema.Attribute.String; Heading: Schema.Attribute.Component<'layout.heading', false>;
description: Schema.Attribute.String; carddetails: Schema.Attribute.Component<'layout.card-details', true>;
}; };
} }
export interface PeopleOverview extends Struct.ComponentSchema { export interface DynamicZoneBackground extends Struct.ComponentSchema {
collectionName: 'components_people_overviews'; collectionName: 'components_dynamic_zone_backgrounds';
info: { info: {
displayName: 'Overview'; displayName: 'RightsideImg';
description: ''; description: '';
}; };
attributes: { attributes: {
Title: Schema.Attribute.String;
Subtitle: Schema.Attribute.String; Subtitle: Schema.Attribute.String;
Title: Schema.Attribute.String & Schema.Attribute.Required; Content: Schema.Attribute.RichText &
Image: Schema.Attribute.Media<'images'>; Schema.Attribute.CustomField<
Description: Schema.Attribute.Text; 'plugin::ckeditor5.CKEditor',
{
preset: 'default';
}
>;
CTA: Schema.Attribute.Component<'cta.cta', false>;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
}; };
} }
export interface PeopleAdvisoryBoard extends Struct.ComponentSchema { export interface DynamicZoneAbout extends Struct.ComponentSchema {
collectionName: 'components_people_advisory_boards'; collectionName: 'components_dynamic_zone_abouts';
info: { info: {
displayName: 'Advisory Board'; displayName: 'LeftsideImg';
description: '';
}; };
attributes: { attributes: {
Name: Schema.Attribute.String & Schema.Attribute.Required; Title: Schema.Attribute.String;
Description: Schema.Attribute.String & Schema.Attribute.Required; Subtitle: Schema.Attribute.String;
Image: Schema.Attribute.Media<'images'>; Image: Schema.Attribute.Media<'images'>;
}; CTA: Schema.Attribute.Component<'cta.cta', false>;
} Content: Schema.Attribute.RichText &
Schema.Attribute.CustomField<
export interface CtaCta extends Struct.ComponentSchema { 'plugin::ckeditor5.CKEditor',
collectionName: 'components_cta_ctas'; {
info: { preset: 'default';
displayName: 'CTA'; }
}; >;
attributes: {
text: Schema.Attribute.String &
Schema.Attribute.Required &
Schema.Attribute.DefaultTo<'text'>;
URL: Schema.Attribute.String;
target: Schema.Attribute.Enumeration<
['_blank', '_parent', '_self', '_top']
>;
varient: Schema.Attribute.Enumeration<['outline', 'fill']>;
}; };
} }
...@@ -920,6 +922,34 @@ declare module '@strapi/strapi' { ...@@ -920,6 +922,34 @@ declare module '@strapi/strapi' {
'shared.page-schema': SharedPageSchema; 'shared.page-schema': SharedPageSchema;
'shared.meta-social': SharedMetaSocial; 'shared.meta-social': SharedMetaSocial;
'shared.media': SharedMedia; 'shared.media': SharedMedia;
'people.team-member': PeopleTeamMember;
'people.team-leads': PeopleTeamLeads;
'people.people-list': PeoplePeopleList;
'people.overview': PeopleOverview;
'people.advisory-board': PeopleAdvisoryBoard;
'layout.whatwedo': LayoutWhatwedo;
'layout.weoffer-list': LayoutWeofferList;
'layout.we-offer': LayoutWeOffer;
'layout.technicalexpertise': LayoutTechnicalexpertise;
'layout.technicalexp-tab': LayoutTechnicalexpTab;
'layout.tab': LayoutTab;
'layout.servicelist': LayoutServicelist;
'layout.product-list': LayoutProductList;
'layout.page-banner': LayoutPageBanner;
'layout.overview': LayoutOverview;
'layout.industry-overview': LayoutIndustryOverview;
'layout.heading': LayoutHeading;
'layout.functional-areas': LayoutFunctionalAreas;
'layout.faq-list': LayoutFaqList;
'layout.cta-banner': LayoutCtaBanner;
'layout.conversion-code': LayoutConversionCode;
'layout.clientel': LayoutClientel;
'layout.cfolist': LayoutCfolist;
'layout.cfo-service': LayoutCfoService;
'layout.cfo-service-tab': LayoutCfoServiceTab;
'layout.card': LayoutCard;
'layout.card-details': LayoutCardDetails;
'layout.areas-expertise': LayoutAreasExpertise;
'home.people': HomePeople; 'home.people': HomePeople;
'home.knowlege-tab': HomeKnowlegeTab; 'home.knowlege-tab': HomeKnowlegeTab;
'home.knowledgeshack': HomeKnowledgeshack; 'home.knowledgeshack': HomeKnowledgeshack;
...@@ -927,6 +957,7 @@ declare module '@strapi/strapi' { ...@@ -927,6 +957,7 @@ declare module '@strapi/strapi' {
'home.home': HomeHome; 'home.home': HomeHome;
'home.areas-expertise-title': HomeAreasExpertiseTitle; 'home.areas-expertise-title': HomeAreasExpertiseTitle;
'home.area-expertiselists': HomeAreaExpertiselists; 'home.area-expertiselists': HomeAreaExpertiselists;
'cta.cta': CtaCta;
'dynamic-zone.what-wedo-banner': DynamicZoneWhatWedoBanner; 'dynamic-zone.what-wedo-banner': DynamicZoneWhatWedoBanner;
'dynamic-zone.we-offer-sec': DynamicZoneWeOfferSec; 'dynamic-zone.we-offer-sec': DynamicZoneWeOfferSec;
'dynamic-zone.variantcard': DynamicZoneVariantcard; 'dynamic-zone.variantcard': DynamicZoneVariantcard;
...@@ -949,35 +980,6 @@ declare module '@strapi/strapi' { ...@@ -949,35 +980,6 @@ declare module '@strapi/strapi' {
'dynamic-zone.card': DynamicZoneCard; 'dynamic-zone.card': DynamicZoneCard;
'dynamic-zone.background': DynamicZoneBackground; 'dynamic-zone.background': DynamicZoneBackground;
'dynamic-zone.about': DynamicZoneAbout; 'dynamic-zone.about': DynamicZoneAbout;
'layout.whatwedo': LayoutWhatwedo;
'layout.weoffer-list': LayoutWeofferList;
'layout.we-offer': LayoutWeOffer;
'layout.technicalexpertise': LayoutTechnicalexpertise;
'layout.technicalexp-tab': LayoutTechnicalexpTab;
'layout.tab': LayoutTab;
'layout.servicelist': LayoutServicelist;
'layout.product-list': LayoutProductList;
'layout.page-banner': LayoutPageBanner;
'layout.overview': LayoutOverview;
'layout.industry-overview': LayoutIndustryOverview;
'layout.heading': LayoutHeading;
'layout.functional-areas': LayoutFunctionalAreas;
'layout.faq-list': LayoutFaqList;
'layout.cta-banner': LayoutCtaBanner;
'layout.conversion-code': LayoutConversionCode;
'layout.clientel': LayoutClientel;
'layout.cfolist': LayoutCfolist;
'layout.cfo-service': LayoutCfoService;
'layout.cfo-service-tab': LayoutCfoServiceTab;
'layout.card': LayoutCard;
'layout.card-details': LayoutCardDetails;
'layout.areas-expertise': LayoutAreasExpertise;
'people.team-member': PeopleTeamMember;
'people.team-leads': PeopleTeamLeads;
'people.people-list': PeoplePeopleList;
'people.overview': PeopleOverview;
'people.advisory-board': PeopleAdvisoryBoard;
'cta.cta': CtaCta;
} }
} }
} }
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!