From 5614d549f98bf6d1a95de008ec27679fcefac6a9 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 2 Mar 2026 21:07:09 +0000 Subject: [PATCH 1/6] Update src/app/about/page.tsx --- src/app/about/page.tsx | 53 ++++++++---------------------------------- 1 file changed, 10 insertions(+), 43 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 7443fca..2006355 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -42,47 +42,17 @@ export default function AboutPage() { Date: Mon, 2 Mar 2026 21:07:10 +0000 Subject: [PATCH 2/6] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 35 +++++++++-------------------------- 1 file changed, 9 insertions(+), 26 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 4894e96..1fdcd66 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -47,34 +47,20 @@ export default function ContactPage() { description="Schedule a consultation with our strategy team. We'll assess your challenges, explore opportunities, and outline a path to achieving your strategic objectives." inputs={[ { - name: "companyName", - type: "text", - placeholder: "Company Name", - required: true, + name: "companyName", type: "text", placeholder: "Company Name", required: true, }, { - name: "email", - type: "email", - placeholder: "Email Address", - required: true, + name: "email", type: "email", placeholder: "Email Address", required: true, }, { - name: "phone", - type: "tel", - placeholder: "Phone Number", - required: false, + name: "phone", type: "tel", placeholder: "Phone Number", required: false, }, { - name: "industry", - type: "text", - placeholder: "Industry", - required: false, + name: "industry", type: "text", placeholder: "Industry", required: false, }, ]} textarea={{ - name: "message", - placeholder: "Tell us about your strategic challenges and objectives...", - rows: 6, + name: "message", placeholder: "Tell us about your strategic challenges and objectives...", rows: 6, required: true, }} useInvertedBackground={true} @@ -89,12 +75,11 @@ export default function ContactPage() {