feat(Contact & membership forms update with their notification)
All checks were successful
Deploy Roxane to Preprod / deploy (push) Successful in 26h10m46s

This commit is contained in:
2026-04-07 18:06:20 +02:00
parent ca464e8e06
commit c848a8b47f
16 changed files with 602 additions and 517 deletions

View File

@@ -54,8 +54,13 @@ export interface Plans {
identifier: string;
name: string;
price: number;
description?: string,
is_active: boolean;
description?: string;
months?: number | null;
}
export interface MembershipService {
name: string;
description: string;
}
@@ -73,6 +78,8 @@ export interface PageProps {
flash?: FlashMessages;
auth?: Auth;
plans?: Plans[];
services?: MembershipService[];
captcha_question?: string;
[key: string]: unknown;
}