File tree Expand file tree Collapse file tree 4 files changed +42
-3
lines changed
api/ai-native-landing-page/content-types/ai-native-landing-page Expand file tree Collapse file tree 4 files changed +42
-3
lines changed Original file line number Diff line number Diff line change 2121 "type" : " dynamiczone" ,
2222 "components" : [
2323 " section-hero.ai-native-page-herosection" ,
24- " section-cta.banner" ,
2524 " elements.testimonial-card" ,
2625 " section-cards.modern-foundation-card" ,
27- " section-cards.feature5"
26+ " section-cards.feature5" ,
27+ " section-cta.ai-native-cta-banner"
2828 ]
2929 }
3030 }
Original file line number Diff line number Diff line change 1+ {
2+ "collectionName" : " components_section_cta_ai_native_cta_banners" ,
3+ "info" : {
4+ "displayName" : " AI Native CTA Banner"
5+ },
6+ "options" : {},
7+ "attributes" : {
8+ "title" : {
9+ "type" : " string"
10+ },
11+ "description" : {
12+ "type" : " text"
13+ },
14+ "primaryButton" : {
15+ "type" : " component" ,
16+ "repeatable" : false ,
17+ "component" : " elements.button"
18+ },
19+ "secondaryButton" : {
20+ "type" : " component" ,
21+ "repeatable" : false ,
22+ "component" : " elements.button"
23+ }
24+ }
25+ }
Original file line number Diff line number Diff line change @@ -689,6 +689,19 @@ export interface SectionCardsWebinar extends Struct.ComponentSchema {
689689 } ;
690690}
691691
692+ export interface SectionCtaAiNativeCtaBanner extends Struct . ComponentSchema {
693+ collectionName : 'components_section_cta_ai_native_cta_banners' ;
694+ info : {
695+ displayName : 'AI Native CTA Banner' ;
696+ } ;
697+ attributes : {
698+ description : Schema . Attribute . Text ;
699+ primaryButton : Schema . Attribute . Component < 'elements.button' , false > ;
700+ secondaryButton : Schema . Attribute . Component < 'elements.button' , false > ;
701+ title : Schema . Attribute . String ;
702+ } ;
703+ }
704+
692705export interface SectionCtaBanner extends Struct . ComponentSchema {
693706 collectionName : 'components_section_cta_banners' ;
694707 info : {
@@ -1290,6 +1303,7 @@ declare module '@strapi/strapi' {
12901303 'section-cards.plaform-key-features' : SectionCardsPlaformKeyFeatures ;
12911304 'section-cards.testimonials' : SectionCardsTestimonials ;
12921305 'section-cards.webinar' : SectionCardsWebinar ;
1306+ 'section-cta.ai-native-cta-banner' : SectionCtaAiNativeCtaBanner ;
12931307 'section-cta.banner' : SectionCtaBanner ;
12941308 'section-cta.download-cta' : SectionCtaDownloadCta ;
12951309 'section-faqs.fa-qs-page-section' : SectionFaqsFaQsPageSection ;
Original file line number Diff line number Diff line change @@ -422,10 +422,10 @@ export interface ApiAiNativeLandingPageAiNativeLandingPage
422422 body : Schema . Attribute . DynamicZone <
423423 [
424424 'section-hero.ai-native-page-herosection' ,
425- 'section-cta.banner' ,
426425 'elements.testimonial-card' ,
427426 'section-cards.modern-foundation-card' ,
428427 'section-cards.feature5' ,
428+ 'section-cta.ai-native-cta-banner' ,
429429 ]
430430 > ;
431431 createdAt : Schema . Attribute . DateTime ;
You can’t perform that action at this time.
0 commit comments