Onboarding / Deployment Scripts / Marketing updates
This commit is contained in:
+34
-2
@@ -172,17 +172,20 @@ export interface PricingPageContent {
|
||||
|
||||
export interface AboutPageSection {
|
||||
title: string;
|
||||
eyebrow?: string;
|
||||
body: string[];
|
||||
imageUrl: string;
|
||||
imageAlt: string;
|
||||
reverse?: boolean;
|
||||
accent?: 'plain' | 'gradient';
|
||||
accent?: 'plain' | 'gradient' | 'founder';
|
||||
}
|
||||
|
||||
export interface AboutPageContent {
|
||||
title: string;
|
||||
sections: AboutPageSection[];
|
||||
servicesTitle: string;
|
||||
servicesTitle?: string;
|
||||
faqTitle?: string;
|
||||
faqs?: FaqItem[];
|
||||
contact: {
|
||||
title: string;
|
||||
email: string;
|
||||
@@ -191,6 +194,35 @@ export interface AboutPageContent {
|
||||
};
|
||||
}
|
||||
|
||||
export interface LocationPark {
|
||||
name: string;
|
||||
description: string;
|
||||
leashNote?: string;
|
||||
image?: {
|
||||
src: string;
|
||||
alt: string;
|
||||
caption?: string;
|
||||
};
|
||||
}
|
||||
|
||||
export interface LocationSeoContent {
|
||||
title?: string;
|
||||
description?: string;
|
||||
image?: string;
|
||||
imageAlt?: string;
|
||||
serviceName?: string;
|
||||
serviceType?: string;
|
||||
breadcrumbLabel?: string;
|
||||
}
|
||||
|
||||
export interface LocationPageContent {
|
||||
suburb: string;
|
||||
slug: string;
|
||||
intro: string;
|
||||
parks: LocationPark[];
|
||||
seo?: LocationSeoContent;
|
||||
}
|
||||
|
||||
export interface LegalPageBlock {
|
||||
type: 'paragraph' | 'list';
|
||||
content: string | string[];
|
||||
|
||||
Reference in New Issue
Block a user