Commit 90d6016b by sujata

seo section add

1 parent 00131c48
......@@ -4,7 +4,8 @@
"info": {
"singularName": "blog-page",
"pluralName": "blog-pages",
"displayName": "BlogPage"
"displayName": "BlogPage",
"description": ""
},
"options": {
"draftAndPublish": true
......@@ -15,6 +16,11 @@
"type": "component",
"repeatable": false,
"component": "layout.page-banner"
},
"seo": {
"type": "component",
"repeatable": false,
"component": "shared.seo"
}
}
}
......@@ -21,6 +21,11 @@
"type": "component",
"repeatable": false,
"component": "layout.heading"
},
"seo": {
"type": "component",
"repeatable": false,
"component": "shared.seo"
}
}
}
......@@ -29,13 +29,13 @@
"BudgetDeatils": {
"type": "dynamiczone",
"components": [
"dynamic-zone.rules-list",
"dynamic-zone.rules-application",
"dynamic-zone.facts",
"dynamic-zone.fact-list",
"dynamic-zone.background",
"dynamic-zone.about",
"dynamic-zone.table"
"dynamic-zone.table",
"dynamic-zone.details"
]
},
"slug": {
......
......@@ -4,7 +4,8 @@
"info": {
"singularName": "career-page",
"pluralName": "career-pages",
"displayName": "CareerPage"
"displayName": "CareerPage",
"description": ""
},
"options": {
"draftAndPublish": true
......@@ -24,6 +25,11 @@
},
"Btn_link": {
"type": "string"
},
"seo": {
"type": "component",
"repeatable": false,
"component": "shared.seo"
}
}
}
......@@ -30,6 +30,11 @@
"type": "component",
"repeatable": true,
"component": "layout.clientel"
},
"seo": {
"type": "component",
"repeatable": false,
"component": "shared.seo"
}
}
}
......@@ -16,6 +16,11 @@
"type": "component",
"repeatable": false,
"component": "layout.page-banner"
},
"seo": {
"type": "component",
"repeatable": false,
"component": "shared.seo"
}
}
}
......@@ -21,6 +21,11 @@
"type": "component",
"repeatable": false,
"component": "layout.heading"
},
"seo": {
"type": "component",
"repeatable": false,
"component": "shared.seo"
}
}
}
......@@ -32,7 +32,6 @@
"CorpediaDetails": {
"type": "dynamiczone",
"components": [
"dynamic-zone.rules-list",
"dynamic-zone.rules-application",
"dynamic-zone.facts",
"dynamic-zone.background",
......
......@@ -57,6 +57,11 @@
"type": "component",
"repeatable": true,
"component": "layout.clientel"
},
"seo": {
"type": "component",
"repeatable": false,
"component": "shared.seo"
}
}
}
......@@ -24,6 +24,11 @@
"layout.cfo-service",
"layout.clientel"
]
},
"seo": {
"type": "component",
"repeatable": false,
"component": "shared.seo"
}
}
}
......@@ -41,6 +41,11 @@
"type": "component",
"repeatable": false,
"component": "layout.page-banner"
},
"seo": {
"type": "component",
"repeatable": false,
"component": "shared.seo"
}
}
}
......@@ -46,6 +46,11 @@
"type": "component",
"repeatable": true,
"component": "people.team-member"
},
"seo": {
"type": "component",
"repeatable": false,
"component": "shared.seo"
}
}
}
......@@ -21,6 +21,11 @@
"type": "component",
"repeatable": false,
"component": "layout.heading"
},
"seo": {
"type": "component",
"repeatable": false,
"component": "shared.seo"
}
}
}
......@@ -32,13 +32,13 @@
"TaxwireDetails": {
"type": "dynamiczone",
"components": [
"dynamic-zone.rules-list",
"dynamic-zone.rules-application",
"dynamic-zone.facts",
"dynamic-zone.fact-list",
"dynamic-zone.background",
"dynamic-zone.about",
"dynamic-zone.table"
"dynamic-zone.table",
"dynamic-zone.details"
]
},
"slug": {
......
......@@ -30,6 +30,11 @@
"type": "component",
"repeatable": true,
"component": "layout.clientel"
},
"seo": {
"type": "component",
"repeatable": false,
"component": "shared.seo"
}
}
}
import type { Struct, Schema } from '@strapi/strapi';
export interface PeopleTeamMember extends Struct.ComponentSchema {
collectionName: 'components_people_team_members';
info: {
displayName: 'TeamMember';
description: '';
};
attributes: {
Name: Schema.Attribute.String & Schema.Attribute.Required;
Linkdin: Schema.Attribute.String & Schema.Attribute.Required;
Image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
Designation: Schema.Attribute.String & Schema.Attribute.Required;
};
}
export interface PeopleTeamLeads extends Struct.ComponentSchema {
collectionName: 'components_people_team_leads';
info: {
displayName: 'Team Leads';
};
attributes: {
Name: Schema.Attribute.String & Schema.Attribute.Required;
Designation: Schema.Attribute.String & Schema.Attribute.Required;
Image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
Linkdin: Schema.Attribute.String & Schema.Attribute.Required;
};
}
export interface PeoplePeopleList extends Struct.ComponentSchema {
collectionName: 'components_people_people_lists';
info: {
displayName: 'people-list';
description: '';
};
attributes: {
heading: Schema.Attribute.String;
description: Schema.Attribute.String;
};
}
export interface PeopleOverview extends Struct.ComponentSchema {
collectionName: 'components_people_overviews';
info: {
displayName: 'Overview';
description: '';
};
attributes: {
Subtitle: Schema.Attribute.String;
Title: Schema.Attribute.String & Schema.Attribute.Required;
Image: Schema.Attribute.Media<'images'>;
Description: Schema.Attribute.Text;
};
}
export interface PeopleAdvisoryBoard extends Struct.ComponentSchema {
collectionName: 'components_people_advisory_boards';
info: {
displayName: 'Advisory Board';
};
attributes: {
Name: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.String & Schema.Attribute.Required;
Image: Schema.Attribute.Media<'images'>;
};
}
export interface SharedSlider extends Struct.ComponentSchema {
collectionName: 'components_shared_sliders';
info: {
......@@ -110,71 +175,6 @@ export interface SharedMedia extends Struct.ComponentSchema {
};
}
export interface PeopleTeamMember extends Struct.ComponentSchema {
collectionName: 'components_people_team_members';
info: {
displayName: 'TeamMember';
description: '';
};
attributes: {
Name: Schema.Attribute.String & Schema.Attribute.Required;
Linkdin: Schema.Attribute.String & Schema.Attribute.Required;
Image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
Designation: Schema.Attribute.String & Schema.Attribute.Required;
};
}
export interface PeopleTeamLeads extends Struct.ComponentSchema {
collectionName: 'components_people_team_leads';
info: {
displayName: 'Team Leads';
};
attributes: {
Name: Schema.Attribute.String & Schema.Attribute.Required;
Designation: Schema.Attribute.String & Schema.Attribute.Required;
Image: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
Linkdin: Schema.Attribute.String & Schema.Attribute.Required;
};
}
export interface PeoplePeopleList extends Struct.ComponentSchema {
collectionName: 'components_people_people_lists';
info: {
displayName: 'people-list';
description: '';
};
attributes: {
heading: Schema.Attribute.String;
description: Schema.Attribute.String;
};
}
export interface PeopleOverview extends Struct.ComponentSchema {
collectionName: 'components_people_overviews';
info: {
displayName: 'Overview';
description: '';
};
attributes: {
Subtitle: Schema.Attribute.String;
Title: Schema.Attribute.String & Schema.Attribute.Required;
Image: Schema.Attribute.Media<'images'>;
Description: Schema.Attribute.Text;
};
}
export interface PeopleAdvisoryBoard extends Struct.ComponentSchema {
collectionName: 'components_people_advisory_boards';
info: {
displayName: 'Advisory Board';
};
attributes: {
Name: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.String & Schema.Attribute.Required;
Image: Schema.Attribute.Media<'images'>;
};
}
export interface LayoutWhatwedo extends Struct.ComponentSchema {
collectionName: 'components_layout_whatwedos';
info: {
......@@ -346,77 +346,6 @@ export interface LayoutAreasExpertise extends Struct.ComponentSchema {
};
}
export interface HomePeople extends Struct.ComponentSchema {
collectionName: 'components_home_people';
info: {
displayName: 'People';
description: '';
};
attributes: {
Heading: Schema.Attribute.String;
Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images'>;
peoplelist: Schema.Attribute.Component<'people.people-list', true>;
};
}
export interface HomeKnowlegeTab extends Struct.ComponentSchema {
collectionName: 'components_home_knowlege_tabs';
info: {
displayName: 'KnowlegeTab';
};
attributes: {
Title: Schema.Attribute.String;
Description: Schema.Attribute.Text;
CTA: Schema.Attribute.Component<'cta.cta', false>;
};
}
export interface HomeKnowledgeshack extends Struct.ComponentSchema {
collectionName: 'components_home_knowledgeshacks';
info: {
displayName: 'Knowledgeshack';
description: '';
};
attributes: {
Heading: Schema.Attribute.String;
Description: Schema.Attribute.String;
Image: Schema.Attribute.Media<'images'>;
};
}
export interface HomeIndustry extends Struct.ComponentSchema {
collectionName: 'components_home_industries';
info: {
displayName: 'Industry';
description: '';
};
attributes: {
Subtitle: Schema.Attribute.String;
Title: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.String;
Image: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', true>;
};
}
export interface HomeHome extends Struct.ComponentSchema {
collectionName: 'components_home_homes';
info: {
displayName: 'Home Banner';
description: '';
};
attributes: {
Title: Schema.Attribute.String & Schema.Attribute.Required;
Subtitle: Schema.Attribute.String;
Description: Schema.Attribute.Text & Schema.Attribute.Required;
Mobilebanner: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
Desktopbanner: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
BackgroundBanner: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', true>;
};
}
export interface DynamicZoneTable extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_tables';
info: {
......@@ -579,6 +508,77 @@ export interface DynamicZoneAbout extends Struct.ComponentSchema {
};
}
export interface HomePeople extends Struct.ComponentSchema {
collectionName: 'components_home_people';
info: {
displayName: 'People';
description: '';
};
attributes: {
Heading: Schema.Attribute.String;
Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images'>;
peoplelist: Schema.Attribute.Component<'people.people-list', true>;
};
}
export interface HomeKnowlegeTab extends Struct.ComponentSchema {
collectionName: 'components_home_knowlege_tabs';
info: {
displayName: 'KnowlegeTab';
};
attributes: {
Title: Schema.Attribute.String;
Description: Schema.Attribute.Text;
CTA: Schema.Attribute.Component<'cta.cta', false>;
};
}
export interface HomeKnowledgeshack extends Struct.ComponentSchema {
collectionName: 'components_home_knowledgeshacks';
info: {
displayName: 'Knowledgeshack';
description: '';
};
attributes: {
Heading: Schema.Attribute.String;
Description: Schema.Attribute.String;
Image: Schema.Attribute.Media<'images'>;
};
}
export interface HomeIndustry extends Struct.ComponentSchema {
collectionName: 'components_home_industries';
info: {
displayName: 'Industry';
description: '';
};
attributes: {
Subtitle: Schema.Attribute.String;
Title: Schema.Attribute.String & Schema.Attribute.Required;
Description: Schema.Attribute.String;
Image: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', true>;
};
}
export interface HomeHome extends Struct.ComponentSchema {
collectionName: 'components_home_homes';
info: {
displayName: 'Home Banner';
description: '';
};
attributes: {
Title: Schema.Attribute.String & Schema.Attribute.Required;
Subtitle: Schema.Attribute.String;
Description: Schema.Attribute.Text & Schema.Attribute.Required;
Mobilebanner: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
Desktopbanner: Schema.Attribute.Media<'images'> & Schema.Attribute.Required;
BackgroundBanner: Schema.Attribute.Media<'images'>;
CTA: Schema.Attribute.Component<'cta.cta', true>;
};
}
export interface CtaCta extends Struct.ComponentSchema {
collectionName: 'components_cta_ctas';
info: {
......@@ -599,6 +599,11 @@ export interface CtaCta extends Struct.ComponentSchema {
declare module '@strapi/strapi' {
export module Public {
export interface ComponentSchemas {
'people.team-member': PeopleTeamMember;
'people.team-leads': PeopleTeamLeads;
'people.people-list': PeoplePeopleList;
'people.overview': PeopleOverview;
'people.advisory-board': PeopleAdvisoryBoard;
'shared.slider': SharedSlider;
'shared.seo': SharedSeo;
'shared.rich-text': SharedRichText;
......@@ -606,11 +611,6 @@ declare module '@strapi/strapi' {
'shared.page-schema': SharedPageSchema;
'shared.meta-social': SharedMetaSocial;
'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.technicalexpertise': LayoutTechnicalexpertise;
'layout.technicalexp-tab': LayoutTechnicalexpTab;
......@@ -625,11 +625,6 @@ declare module '@strapi/strapi' {
'layout.cfo-service': LayoutCfoService;
'layout.cfo-service-tab': LayoutCfoServiceTab;
'layout.areas-expertise': LayoutAreasExpertise;
'home.people': HomePeople;
'home.knowlege-tab': HomeKnowlegeTab;
'home.knowledgeshack': HomeKnowledgeshack;
'home.industry': HomeIndustry;
'home.home': HomeHome;
'dynamic-zone.table': DynamicZoneTable;
'dynamic-zone.rules-list': DynamicZoneRulesList;
'dynamic-zone.rules-application': DynamicZoneRulesApplication;
......@@ -642,6 +637,11 @@ declare module '@strapi/strapi' {
'dynamic-zone.details': DynamicZoneDetails;
'dynamic-zone.background': DynamicZoneBackground;
'dynamic-zone.about': DynamicZoneAbout;
'home.people': HomePeople;
'home.knowlege-tab': HomeKnowlegeTab;
'home.knowledgeshack': HomeKnowledgeshack;
'home.industry': HomeIndustry;
'home.home': HomeHome;
'cta.cta': CtaCta;
}
}
......
......@@ -621,12 +621,14 @@ export interface ApiBlogPageBlogPage extends Struct.SingleTypeSchema {
singularName: 'blog-page';
pluralName: 'blog-pages';
displayName: 'BlogPage';
description: '';
};
options: {
draftAndPublish: true;
};
attributes: {
Banner: Schema.Attribute.Component<'layout.page-banner', false>;
seo: Schema.Attribute.Component<'shared.seo', false>;
createdAt: Schema.Attribute.DateTime;
updatedAt: Schema.Attribute.DateTime;
publishedAt: Schema.Attribute.DateTime;
......@@ -657,6 +659,7 @@ export interface ApiBudgetPageBudgetPage extends Struct.SingleTypeSchema {
attributes: {
Banner: Schema.Attribute.Component<'layout.page-banner', false>;
Heading: Schema.Attribute.Component<'layout.heading', false>;
seo: Schema.Attribute.Component<'shared.seo', false>;
createdAt: Schema.Attribute.DateTime;
updatedAt: Schema.Attribute.DateTime;
publishedAt: Schema.Attribute.DateTime;
......@@ -691,13 +694,13 @@ export interface ApiBudgetpanoramaBudgetpanorama
Image: Schema.Attribute.Media<'images'>;
BudgetDeatils: Schema.Attribute.DynamicZone<
[
'dynamic-zone.rules-list',
'dynamic-zone.rules-application',
'dynamic-zone.facts',
'dynamic-zone.fact-list',
'dynamic-zone.background',
'dynamic-zone.about',
'dynamic-zone.table',
'dynamic-zone.details',
]
>;
slug: Schema.Attribute.UID;
......@@ -760,6 +763,7 @@ export interface ApiCareerPageCareerPage extends Struct.SingleTypeSchema {
singularName: 'career-page';
pluralName: 'career-pages';
displayName: 'CareerPage';
description: '';
};
options: {
draftAndPublish: true;
......@@ -769,6 +773,7 @@ export interface ApiCareerPageCareerPage extends Struct.SingleTypeSchema {
Heading: Schema.Attribute.String;
Description: Schema.Attribute.Text;
Btn_link: Schema.Attribute.String;
seo: Schema.Attribute.Component<'shared.seo', false>;
createdAt: Schema.Attribute.DateTime;
updatedAt: Schema.Attribute.DateTime;
publishedAt: Schema.Attribute.DateTime;
......@@ -839,6 +844,7 @@ export interface ApiCfoPageCfoPage extends Struct.SingleTypeSchema {
]
>;
Clientel: Schema.Attribute.Component<'layout.clientel', true>;
seo: Schema.Attribute.Component<'shared.seo', false>;
createdAt: Schema.Attribute.DateTime;
updatedAt: Schema.Attribute.DateTime;
publishedAt: Schema.Attribute.DateTime;
......@@ -907,6 +913,7 @@ export interface ApiConatctPageConatctPage extends Struct.SingleTypeSchema {
};
attributes: {
Banner: Schema.Attribute.Component<'layout.page-banner', false>;
seo: Schema.Attribute.Component<'shared.seo', false>;
createdAt: Schema.Attribute.DateTime;
updatedAt: Schema.Attribute.DateTime;
publishedAt: Schema.Attribute.DateTime;
......@@ -973,7 +980,6 @@ export interface ApiCorpediaCorpedia extends Struct.CollectionTypeSchema {
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
CorpediaDetails: Schema.Attribute.DynamicZone<
[
'dynamic-zone.rules-list',
'dynamic-zone.rules-application',
'dynamic-zone.facts',
'dynamic-zone.background',
......@@ -1014,6 +1020,7 @@ export interface ApiCorpediaPageCorpediaPage extends Struct.SingleTypeSchema {
attributes: {
Banner: Schema.Attribute.Component<'layout.page-banner', false>;
Heading: Schema.Attribute.Component<'layout.heading', false>;
seo: Schema.Attribute.Component<'shared.seo', false>;
createdAt: Schema.Attribute.DateTime;
updatedAt: Schema.Attribute.DateTime;
publishedAt: Schema.Attribute.DateTime;
......@@ -1089,6 +1096,7 @@ export interface ApiHomeHome extends Struct.SingleTypeSchema {
>;
Industry: Schema.Attribute.Component<'home.industry', true>;
Clientel: Schema.Attribute.Component<'layout.clientel', true>;
seo: Schema.Attribute.Component<'shared.seo', false>;
createdAt: Schema.Attribute.DateTime;
updatedAt: Schema.Attribute.DateTime;
publishedAt: Schema.Attribute.DateTime;
......@@ -1118,6 +1126,7 @@ export interface ApiIndustryPageIndustryPage extends Struct.SingleTypeSchema {
IndustryDetails: Schema.Attribute.DynamicZone<
['layout.industry-overview', 'layout.cfo-service', 'layout.clientel']
>;
seo: Schema.Attribute.Component<'shared.seo', false>;
createdAt: Schema.Attribute.DateTime;
updatedAt: Schema.Attribute.DateTime;
publishedAt: Schema.Attribute.DateTime;
......@@ -1153,6 +1162,7 @@ export interface ApiKnowledgeshackKnowledgeshack
Budgetpanorama: Schema.Attribute.Component<'layout.heading', false>;
Blogs: Schema.Attribute.Component<'layout.heading', false>;
Banner: Schema.Attribute.Component<'layout.page-banner', false>;
seo: Schema.Attribute.Component<'shared.seo', false>;
createdAt: Schema.Attribute.DateTime;
updatedAt: Schema.Attribute.DateTime;
publishedAt: Schema.Attribute.DateTime;
......@@ -1188,6 +1198,7 @@ export interface ApiPeoplePeople extends Struct.SingleTypeSchema {
Teamlist: Schema.Attribute.Component<'people.team-leads', true>;
TeamMembers: Schema.Attribute.Component<'layout.heading', false>;
Memberlist: Schema.Attribute.Component<'people.team-member', true>;
seo: Schema.Attribute.Component<'shared.seo', false>;
createdAt: Schema.Attribute.DateTime;
updatedAt: Schema.Attribute.DateTime;
publishedAt: Schema.Attribute.DateTime;
......@@ -1291,13 +1302,13 @@ export interface ApiTaxwireTaxwire extends Struct.CollectionTypeSchema {
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
TaxwireDetails: Schema.Attribute.DynamicZone<
[
'dynamic-zone.rules-list',
'dynamic-zone.rules-application',
'dynamic-zone.facts',
'dynamic-zone.fact-list',
'dynamic-zone.background',
'dynamic-zone.about',
'dynamic-zone.table',
'dynamic-zone.details',
]
>;
slug: Schema.Attribute.UID;
......@@ -1331,6 +1342,7 @@ export interface ApiTaxwirePageTaxwirePage extends Struct.SingleTypeSchema {
attributes: {
Banner: Schema.Attribute.Component<'layout.page-banner', false>;
Heading: Schema.Attribute.Component<'layout.heading', false>;
seo: Schema.Attribute.Component<'shared.seo', false>;
createdAt: Schema.Attribute.DateTime;
updatedAt: Schema.Attribute.DateTime;
publishedAt: Schema.Attribute.DateTime;
......@@ -1370,6 +1382,7 @@ export interface ApiTransactionPageTransactionPage
]
>;
Clientel: Schema.Attribute.Component<'layout.clientel', true>;
seo: Schema.Attribute.Component<'shared.seo', false>;
createdAt: Schema.Attribute.DateTime;
updatedAt: 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!