Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-05-30 13:06:09 +00:00

View File

@@ -161,25 +161,25 @@ export default function LandingPage() {
"Strategic Roadmapping", "Market Analysis & Entry", "Competitor Benchmarking"], "Strategic Roadmapping", "Market Analysis & Entry", "Competitor Benchmarking"],
buttons: [ buttons: [
{ {
text: "Learn More"}, text: "Learn More", href: "#contact"}
], ]
}, },
{ {
id: "service-2", label: "Growth & Expansion", title: "Accelerated Market Penetration", items: [ id: "service-2", label: "Growth & Expansion", title: "Accelerated Market Penetration", items: [
"Sales & Marketing Optimization", "Partnership Development", "New Product Launch Strategy"], "Sales & Marketing Optimization", "Partnership Development", "New Product Launch Strategy"],
buttons: [ buttons: [
{ {
text: "Learn More"}, text: "Learn More", href: "#contact"}
], ]
}, },
{ {
id: "service-3", label: "Operational Excellence", title: "Efficiency & Performance", items: [ id: "service-3", label: "Operational Excellence", title: "Efficiency & Performance", items: [
"Process Improvement", "Resource Management", "Performance Metrics & KPIs"], "Process Improvement", "Resource Management", "Performance Metrics & KPIs"],
buttons: [ buttons: [
{ {
text: "Learn More"}, text: "Learn More", href: "#contact"}
], ]
}, }
]} ]}
title="Our Core Business Development Services" title="Our Core Business Development Services"
description="We offer a comprehensive suite of services designed to accelerate your growth and optimize your operations." description="We offer a comprehensive suite of services designed to accelerate your growth and optimize your operations."
@@ -281,6 +281,10 @@ export default function LandingPage() {
inputPlaceholder="Your Email Address" inputPlaceholder="Your Email Address"
buttonText="Send Message" buttonText="Send Message"
termsText="By submitting, you agree to our privacy policy and terms of service." termsText="By submitting, you agree to our privacy policy and terms of service."
onSubmit={(email) => {
console.log("Contact form submitted:", email);
alert(`Thank you for your message, ${email}!`);
}}
/> />
</div> </div>
@@ -326,4 +330,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }