Update src/app/contact/page.tsx

This commit is contained in:
2026-03-25 05:01:00 +00:00
parent d355314deb
commit 63f0d10dae

View File

@@ -21,26 +21,26 @@ export default function LandingPage() {
cardStyle="gradient-mesh"
primaryButtonStyle="double-inset"
secondaryButtonStyle="radial-glow"
headingFontWeight="light"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Services", id: "services"},
name: "Services", id: "/services"},
{
name: "About", id: "about"},
name: "About", id: "/about"},
{
name: "Results", id: "results"},
name: "Results", id: "#results"},
{
name: "Clients", id: "clients"},
name: "Clients", id: "#clients"},
{
name: "Contact", id: "contact"},
name: "Contact", id: "/contact"},
]}
brandName="Apex Social"
button={{
text: "Get Started", href: "#contact"}}
text: "Get Started", href: "/contact"}}
animateOnLoad={true}
/>
</div>
@@ -48,8 +48,8 @@ export default function LandingPage() {
<div id="contact-form" data-section="contact-form">
<ContactSplitForm
useInvertedBackground={false}
title="Get in Touch with Apex Social"
description="Have questions, need a quote, or want to discuss a custom social media strategy? Reach out to our team today."
title="Partner with Apex Social: Your Journey to Digital Excellence Starts Here"
description="Whether you're seeking a bespoke strategy, have questions about our services, or are ready to collaborate, our team is eager to connect."
inputs={[
{
name: "name", type: "text", placeholder: "Your Name", required: true,
@@ -66,7 +66,7 @@ export default function LandingPage() {
required: true,
}}
imageSrc="http://img.b2bpic.net/free-photo/working-office_1150-130.jpg"
imageAlt="growth graph social media marketing"
imageAlt="Social media marketing team collaboration"
buttonText="Send Message"
/>
</div>
@@ -78,12 +78,12 @@ export default function LandingPage() {
faqsAnimation="blur-reveal"
faqs={[
{
id: "1", title: "What makes Apex Social different?", content: "We combine bespoke strategies, cutting-edge analytics, and a deep understanding of social media trends to deliver truly exceptional and measurable results for premium brands."},
id: "1", title: "What differentiates Apex Social as a premium agency?", content: "Apex Social stands apart through our bespoke strategies, data-driven methodologies, and an unwavering commitment to crafting unique digital narratives that resonate and convert for discerning brands."},
{
id: "2", title: "How do you measure success?", content: "We establish clear KPIs aligned with your business objectives, tracking metrics like engagement rate, audience growth, conversion rates, and overall ROI through detailed reports."},
id: "2", title: "How do you define and measure campaign success?", content: "We collaborate closely with clients to establish clear, measurable KPIs (Key Performance Indicators), focusing on metrics that drive business objectives, such as engagement, conversion rates, and a demonstrable ROI."},
]}
title="Frequently Asked Questions"
description="Find quick answers to the most common inquiries about our services, process, and partnership model."
title="Frequently Asked Questions: Your Path to Partnership"
description="Get swift answers to common inquiries about our services, strategic approach, and how we foster successful client partnerships."
/>
</div>
@@ -92,10 +92,10 @@ export default function LandingPage() {
useInvertedBackground={false}
background={{
variant: "plain"}}
tag="Still Have Questions?"
tag="Still Curious?"
tagIcon={Phone}
title="We're Here to Help"
description="Our dedicated support team is ready to provide personalized assistance and answer any further questions you may have."
title="We're Here to Illuminate Your Next Steps"
description="Reach out to our expert team for a personalized discussion, where we'll address your specific needs and outline a roadmap for success."
buttons={[
{
text: "Call Us Now", href: "tel:+1234567890"},
@@ -149,4 +149,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}