feat: add anchore to sections

This commit is contained in:
Zotov Ivan Yuryevich
2026-05-03 18:43:52 +03:00
parent 16671c6f4a
commit 8d9e8a489b
6 changed files with 20 additions and 0 deletions

View File

@@ -11,6 +11,9 @@
"description": {
"type": "text"
},
"anchor": {
"type": "string"
},
"partners": {
"type": "component",
"component": "shared.string",

View File

@@ -11,6 +11,9 @@
"description": {
"type": "string"
},
"anchor": {
"type": "string"
},
"cards": {
"type": "component",
"component": "cards.case",

View File

@@ -14,6 +14,9 @@
"badge": {
"type": "string"
},
"anchor": {
"type": "string"
},
"stats": {
"type": "component",
"component": "shared.attribute",

View File

@@ -11,6 +11,9 @@
"description": {
"type": "string"
},
"anchor": {
"type": "string"
},
"cards": {
"type": "component",
"component": "cards.service",

View File

@@ -11,6 +11,9 @@
"description": {
"type": "text"
},
"anchor": {
"type": "string"
},
"cards": {
"type": "component",
"component": "cards.solution",

View File

@@ -63,6 +63,7 @@ export interface SectionsAbout extends Struct.ComponentSchema {
displayName: 'About';
};
attributes: {
anchor: Schema.Attribute.String;
cards: Schema.Attribute.Component<'cards.advantage', true>;
description: Schema.Attribute.Text;
partners: Schema.Attribute.Component<'shared.string', true>;
@@ -76,6 +77,7 @@ export interface SectionsCases extends Struct.ComponentSchema {
displayName: 'Cases';
};
attributes: {
anchor: Schema.Attribute.String;
cards: Schema.Attribute.Component<'cards.case', true>;
description: Schema.Attribute.String;
title: Schema.Attribute.String;
@@ -88,6 +90,7 @@ export interface SectionsHomeHero extends Struct.ComponentSchema {
displayName: 'HomeHero';
};
attributes: {
anchor: Schema.Attribute.String;
badge: Schema.Attribute.String;
description: Schema.Attribute.Text;
stats: Schema.Attribute.Component<'shared.attribute', true>;
@@ -101,6 +104,7 @@ export interface SectionsServices extends Struct.ComponentSchema {
displayName: 'Services';
};
attributes: {
anchor: Schema.Attribute.String;
cards: Schema.Attribute.Component<'cards.service', true>;
description: Schema.Attribute.String;
title: Schema.Attribute.String;
@@ -113,6 +117,7 @@ export interface SectionsSolutions extends Struct.ComponentSchema {
displayName: 'Solutions';
};
attributes: {
anchor: Schema.Attribute.String;
cards: Schema.Attribute.Component<'cards.solution', true>;
description: Schema.Attribute.Text;
title: Schema.Attribute.String;