feat(quote): enhance QuoteBlock and QuoteCarouselBlock components
Deploy / verify (push) Successful in 44s
Deploy / deploy (push) Successful in 1m3s

- Updated QuoteBlock to support a new "center" variant for text alignment.
- Modified QuoteCarouselBlock to include an option for displaying navigation arrows.
- Enhanced type definitions for quote-related data structures to accommodate new features.
- Improved styling and layout handling for better visual presentation of quotes.
This commit is contained in:
Peter Meier
2026-04-19 09:31:30 +02:00
parent 597b920e7c
commit ffd4f599cd
5 changed files with 526 additions and 42 deletions
+3 -2
View File
@@ -136,7 +136,7 @@ export interface QuoteBlockData {
_slug?: string;
quote?: string;
author?: string;
variant?: "left" | "right";
variant?: "left" | "right" | "center";
layout?: BlockLayout;
}
@@ -151,11 +151,12 @@ export interface QuoteCarouselBlockData {
_slug?: string;
quote?: string;
author?: string;
variant?: "left" | "right";
variant?: "left" | "right" | "center";
}
>;
autoRotate?: boolean;
intervalSeconds?: number;
showArrows?: boolean;
layout?: BlockLayout;
}