feat: add section content editing, animation selection and HTML5 drag & drop in live editor
All checks were successful
Production Build & Deploy / build-and-deploy (push) Successful in 1m0s

This commit is contained in:
Daniel S
2026-08-09 12:45:36 +02:00
parent b159b061ae
commit 3453746fc0
5 changed files with 184 additions and 11 deletions

View File

@@ -18,6 +18,7 @@ export interface SectionConfig {
title?: string;
subtitle?: string;
badge?: string;
animation?: string;
elements?: UIComponent[];
}
@@ -45,11 +46,13 @@ export interface SiteConfig {
ctaPrimaryLink: string;
ctaSecondaryText: string;
ctaSecondaryLink: string;
animation?: string;
elements?: UIComponent[];
};
bento: {
sectionTitle: string;
sectionSubtitle: string;
animation?: string;
cards: Array<{
id: string;
title: string;
@@ -57,6 +60,7 @@ export interface SiteConfig {
colSpan?: number;
badge?: string;
icon?: string;
animation?: string;
}>;
};
contact: {