Created the rest of the structure of the CMS

This commit is contained in:
Tiago Ribeiro
2024-03-18 10:21:00 +00:00
parent edeae4a8c3
commit bd0b7a32ff
62 changed files with 14701 additions and 133 deletions

View File

@@ -60,6 +60,119 @@ export interface AboutPageExpertise extends Schema.Component {
};
}
export interface FooterAbout extends Schema.Component {
collectionName: 'components_footer_abouts';
info: {
displayName: 'About';
description: '';
};
attributes: {
Terms: Attribute.String;
PrivacyPolicy: Attribute.String;
Text: Attribute.String;
};
}
export interface FooterNavigation extends Schema.Component {
collectionName: 'components_footer_navigations';
info: {
displayName: 'Navigation';
};
attributes: {
Text: Attribute.String;
WhyUs: Attribute.String;
Capabilities: Attribute.String;
Expertise: Attribute.String;
History: Attribute.String;
Contact: Attribute.String;
};
}
export interface FooterServices extends Schema.Component {
collectionName: 'components_footer_services';
info: {
displayName: 'Services';
};
attributes: {
Text: Attribute.String;
EnCoachBenefits: Attribute.String;
StudentTestimonials: Attribute.String;
};
}
export interface HistoryPageEvent extends Schema.Component {
collectionName: 'components_history_page_events';
info: {
displayName: 'Event';
};
attributes: {
Label: Attribute.String;
Date: Attribute.String;
Icon: Attribute.String;
};
}
export interface HomePageInterestedSection extends Schema.Component {
collectionName: 'components_home_page_interested_sections';
info: {
displayName: 'Interested Section';
};
attributes: {
Tag: Attribute.String;
Title: Attribute.String;
ContactUs: Attribute.String;
WhatsAppContact: Attribute.String;
};
}
export interface HomePageModules extends Schema.Component {
collectionName: 'components_home_page_modules';
info: {
displayName: 'Modules';
};
attributes: {
Reading: Attribute.Component<'section.title-with-text'>;
Listening: Attribute.Component<'section.title-with-text'>;
Writing: Attribute.Component<'section.title-with-text'>;
Speaking: Attribute.Component<'section.title-with-text'>;
};
}
export interface MiscSingularAndPlural extends Schema.Component {
collectionName: 'components_misc_singular_and_plurals';
info: {
displayName: 'Singular & Plural';
};
attributes: {
Singular: Attribute.String;
Plural: Attribute.String;
};
}
export interface SectionTextWithList extends Schema.Component {
collectionName: 'components_section_text_with_lists';
info: {
displayName: 'Text with List';
};
attributes: {
Text: Attribute.Text;
List: Attribute.Blocks;
};
}
export interface SectionTitleWithTextAndList extends Schema.Component {
collectionName: 'components_section_title_with_text_and_lists';
info: {
displayName: 'Title with Text and List';
description: '';
};
attributes: {
Title: Attribute.String;
Text: Attribute.Text;
List: Attribute.RichText;
};
}
export interface SectionTitleWithText extends Schema.Component {
collectionName: 'components_section_title_with_texts';
info: {
@@ -72,6 +185,47 @@ export interface SectionTitleWithText extends Schema.Component {
};
}
export interface ServicesPageModuleEvaluation extends Schema.Component {
collectionName: 'components_services_page_module_evaluations';
info: {
displayName: 'Module Evaluation';
};
attributes: {
Title: Attribute.String;
Text: Attribute.Text;
Evaluation: Attribute.String;
EvaluationValues: Attribute.RichText;
Acquire: Attribute.String;
AcquireValues: Attribute.RichText;
};
}
export interface ServicesPageProgressTracking extends Schema.Component {
collectionName: 'components_services_page_progress_trackings';
info: {
displayName: 'Progress Tracking';
};
attributes: {
Title: Attribute.String;
Text: Attribute.String;
Advantages: Attribute.String;
AdvantageValues: Attribute.RichText;
};
}
export interface TitleTagTitleText extends Schema.Component {
collectionName: 'components_title_tag_title_texts';
info: {
displayName: 'Title with Tag and Text';
description: '';
};
attributes: {
Tag: Attribute.String;
Title: Attribute.String;
Text: Attribute.Text;
};
}
export interface TitleTitleWithTag extends Schema.Component {
collectionName: 'components_title_title_with_tags';
info: {
@@ -91,7 +245,19 @@ declare module '@strapi/types' {
'about-page.capabilities': AboutPageCapabilities;
'about-page.ceo-message': AboutPageCeoMessage;
'about-page.expertise': AboutPageExpertise;
'footer.about': FooterAbout;
'footer.navigation': FooterNavigation;
'footer.services': FooterServices;
'history-page.event': HistoryPageEvent;
'home-page.interested-section': HomePageInterestedSection;
'home-page.modules': HomePageModules;
'misc.singular-and-plural': MiscSingularAndPlural;
'section.text-with-list': SectionTextWithList;
'section.title-with-text-and-list': SectionTitleWithTextAndList;
'section.title-with-text': SectionTitleWithText;
'services-page.module-evaluation': ServicesPageModuleEvaluation;
'services-page.progress-tracking': ServicesPageProgressTracking;
'title.tag-title-text': TitleTagTitleText;
'title.title-with-tag': TitleTitleWithTag;
}
}

File diff suppressed because it is too large Load Diff