From 916f30803ccf8783314e0ef8f75d50a4ca20fdde Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 2 May 2026 23:24:38 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index dd7814f..9dab975 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -50,15 +50,15 @@ export default function LandingPage() { title="Booking & Cancellation Policy" sections={[ { - heading: "Deposit Terms", content: { - text: "A 50% non-refundable deposit is required to secure your date." - }, + heading: "Deposit Terms", content: [ + { type: "paragraph", text: "A 50% non-refundable deposit is required to secure your date." } + ] }, { - heading: "Cancellation Policy", items: [ - "Cancel 14 days before: 50% refund", "Cancel within 7 days: No refund", "Date changes subject to availability" - ], - }, + heading: "Cancellation Policy", content: [ + { type: "list", items: ["Cancel 14 days before: 50% refund", "Cancel within 7 days: No refund", "Date changes subject to availability"] } + ] + } ]} /> -- 2.49.1