fix(types): add bg_color property to hero and bento interfaces in configLoader

This commit is contained in:
Daniel S
2026-08-09 23:09:03 +02:00
parent 6042c5ad23
commit e932495742

View File

@@ -47,17 +47,20 @@ export interface SiteConfig {
ctaSecondaryText: string; ctaSecondaryText: string;
ctaSecondaryLink: string; ctaSecondaryLink: string;
animation?: string; animation?: string;
bg_color?: string;
elements?: UIComponent[]; elements?: UIComponent[];
}; };
bento: { bento: {
sectionTitle: string; sectionTitle: string;
sectionSubtitle: string; sectionSubtitle: string;
animation?: string; animation?: string;
bg_color?: string;
cards: Array<{ cards: Array<{
id: string; id: string;
title: string; title: string;
description: string; description: string;
colSpan?: number; colSpan?: number;
badge?: string; badge?: string;
icon?: string; icon?: string;
animation?: string; animation?: string;