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;
ctaSecondaryLink: string;
animation?: string;
bg_color?: string;
elements?: UIComponent[];
};
bento: {
sectionTitle: string;
sectionSubtitle: string;
animation?: string;
bg_color?: string;
cards: Array<{
id: string;
title: string;
description: string;
colSpan?: number;
badge?: string;
icon?: string;
animation?: string;