diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index eb821ff..29be490 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -17,7 +17,7 @@ export default function ContactPage() {
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" },
]}
- button={{ text: "Get Started", href: "/contact" }}
+ button={{ text: "Book Consultation", href: "/contact" }}
/>
@@ -30,6 +30,8 @@ export default function ContactPage() {
]}
textarea={{ name: "message", placeholder: "Tell us about your project..." }}
useInvertedBackground={false}
+ buttonText="Submit Request"
+ onSubmit={(email) => console.log("Consultation requested for:", email)}
/>
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index dffc4aa..2792fb6 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -35,7 +35,7 @@ export default function LaunchPadLocalPage() {
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" },
]}
- button={{ text: "Get Started", href: "/contact" }}
+ button={{ text: "Book Consultation", href: "/contact" }}
/>