fix(types): add missing slotId to fallback UIComponent objects in configLoader.ts
All checks were successful
Production Build & Deploy / build-and-deploy (push) Successful in 56s
All checks were successful
Production Build & Deploy / build-and-deploy (push) Successful in 56s
This commit is contained in:
@@ -117,8 +117,8 @@ export const FALLBACK_SITE_CONFIG: SiteConfig = {
|
|||||||
ctaSecondaryText: 'Mehr erfahren',
|
ctaSecondaryText: 'Mehr erfahren',
|
||||||
ctaSecondaryLink: '#services',
|
ctaSecondaryLink: '#services',
|
||||||
elements: [
|
elements: [
|
||||||
{ id: 'el-1', type: 'badge', content: ' WaaS Engine' },
|
{ id: 'el-1', slotId: 'hero-badge-slot', type: 'badge', content: 'WaaS Engine' },
|
||||||
{ id: 'el-2', type: 'button', content: 'Neuer Button', link: '#contact', animation0: 'spring-fade', style: 'primary' }
|
{ id: 'el-2', slotId: 'hero-actions-slot', type: 'button', content: 'Neuer Button', link: '#contact', animation0: 'spring-fade', style: 'primary' }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
bento: {
|
bento: {
|
||||||
@@ -144,7 +144,7 @@ export const FALLBACK_SITE_CONFIG: SiteConfig = {
|
|||||||
{
|
{
|
||||||
id: 'card-3',
|
id: 'card-3',
|
||||||
title: 'Liquid Glass UI',
|
title: 'Liquid Glass UI',
|
||||||
description: 'Moderne <EFBFBD> sthetik mit matte Boxen, Aurora Glows und physikalischen Kanten-Effekten.',
|
description: 'Moderne Ästhetik mit matte Boxen, Aurora Glows und physikalischen Kanten-Effekten.',
|
||||||
colSpan: 1,
|
colSpan: 1,
|
||||||
badge: 'Design',
|
badge: 'Design',
|
||||||
icon: 'layers'
|
icon: 'layers'
|
||||||
@@ -161,14 +161,14 @@ export const FALLBACK_SITE_CONFIG: SiteConfig = {
|
|||||||
},
|
},
|
||||||
contact: {
|
contact: {
|
||||||
title: 'Bereit für Ihr Projekt?',
|
title: 'Bereit für Ihr Projekt?',
|
||||||
subtitle: 'Schreiben Sie uns direkt. Wir antworten innerhalb von 24 Stunden persúnlich.',
|
subtitle: 'Schreiben Sie uns direkt. Wir antworten innerhalb von 24 Stunden persönlich.',
|
||||||
recipientEmail: 'kontakt@ndsolutions.de',
|
recipientEmail: 'kontakt@ndsolutions.de',
|
||||||
phone: '+49 (0) 123 456789',
|
phone: '+49 (0) 123 456789',
|
||||||
address: 'Deutschland'
|
address: 'Deutschland'
|
||||||
},
|
},
|
||||||
sectionsOrder: ['hero', 'bento', 'contact'],
|
sectionsOrder: ['hero', 'bento', 'contact'],
|
||||||
sectionsDetails: [
|
sectionsDetails: [
|
||||||
{ id: 'hero', type: 'hero', title: 'Hero Sektion', elements: [ {id: 'el-1', type: 'badge', content: ' WaaS Engine' } ] },
|
{ id: 'hero', type: 'hero', title: 'Hero Sektion', elements: [ { id: 'el-1', slotId: 'hero-badge-slot', type: 'badge', content: 'WaaS Engine' } ] },
|
||||||
{ id: 'bento', type: 'bento', title: 'Bento Grid', elements: [] },
|
{ id: 'bento', type: 'bento', title: 'Bento Grid', elements: [] },
|
||||||
{ id: 'contact', type: 'contact', title: 'Contact Section', elements: [] }
|
{ id: 'contact', type: 'contact', title: 'Contact Section', elements: [] }
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user