From e9324957420e6eb249b0816ce09791513dae4440 Mon Sep 17 00:00:00 2001 From: Daniel S Date: Sun, 9 Aug 2026 23:09:03 +0200 Subject: [PATCH] fix(types): add bg_color property to hero and bento interfaces in configLoader --- src/utils/configLoader.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/utils/configLoader.ts b/src/utils/configLoader.ts index 4eb1a8d..4bf0572 100644 --- a/src/utils/configLoader.ts +++ b/src/utils/configLoader.ts @@ -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;