4.2.3 - CTA footer, How it works

This commit is contained in:
2026-05-06 17:42:43 +12:00
parent 6d021e05ea
commit ad9df7578a
19 changed files with 621 additions and 86 deletions
+13
View File
@@ -74,6 +74,18 @@ export interface TestimonialContent {
imageUrl?: string;
}
export interface ProcessStep {
title: string;
body: string;
icon?: string;
}
export interface HowItWorksContent {
title: string;
intro?: string;
steps: ProcessStep[];
}
export interface BookingContent {
title: string;
subtitle: string;
@@ -219,6 +231,7 @@ export interface HomePageContent {
intro: IntroContent;
promise: PromiseContent;
services: IconCard[];
howItWorks: HowItWorksContent;
values: IconCard[];
testimonials: TestimonialContent[];
booking: BookingContent;