From 72b61aa6a0eb0c3f9502a51bf432ff0354ca39a4 Mon Sep 17 00:00:00 2001 From: AmirReza Jamali Date: Sat, 29 Nov 2025 14:03:52 +0330 Subject: [PATCH] refactor(inquires): Standardize contact data field names to snake_case - Update Title field reference to title in contact form heading - Update Description field reference to description in contact form subtitle - Align with existing snake_case naming convention established in CMS data types - Ensure consistency across all configurable form fields --- app/_inquires/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/_inquires/page.tsx b/app/_inquires/page.tsx index c3fa3a5..7ee3bb3 100644 --- a/app/_inquires/page.tsx +++ b/app/_inquires/page.tsx @@ -6,10 +6,10 @@ const Inquires = ({ contactData }: { contactData?: CmsContact }) => {

- {contactData?.Title || "Unlock Your Growth Potential"} + {contactData?.title || "Unlock Your Growth Potential"}

- {contactData?.Description || + {contactData?.description || "Register for early access and a free consultation. Let's start winning together."}