Create hero and text with image components

This commit is contained in:
itsfinniii
2026-03-20 20:48:53 +01:00
parent 50dc6ec4c0
commit a5efc7415b
7 changed files with 42 additions and 4 deletions

View File

@@ -3,7 +3,8 @@ type TextWithImageComponent = {
id: string;
title: string;
text: string;
text: string | null;
image: PhotoProps;
imageSide: "left" | "right";
imageSize: "small" | "medium" | "large";
}