3 Commits

Author SHA1 Message Date
b71e1f4500 Update src/app/page.tsx 2026-03-10 16:41:37 +00:00
fa56078dde Update src/app/page.tsx 2026-03-10 16:34:06 +00:00
c8ce05bbda Merge version_1 into main
Merge version_1 into main
2026-03-10 11:51:32 +00:00

View File

@@ -9,6 +9,7 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import ContactSplit from '@/components/sections/contact/ContactSplit'; import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import ContactText from '@/components/sections/contact/ContactText';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -162,21 +163,16 @@ export default function LandingPage() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplit <ContactText
tag="Get In Touch" text="Ready to elevate your digital presence? Let's work together to create a strategy that drives results."
title="Ready to Transform Your Digital Presence?" animationType="entrance-slide"
description="Let's discuss how we can create a custom marketing strategy that drives real results for your brand. Connect with our team today." buttons={[
tagAnimation="slide-up" { text: "Schedule a Consultation", href: "#" },
background={{ variant: "sparkles-gradient" }} { text: "View Our Services", href: "#services" }
]}
background={{ variant: "plain" }}
useInvertedBackground={false} useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/corporate-workers-brainstorming-together_23-2148804532.jpg" ariaLabel="Contact call-to-action section"
imageAlt="Our collaborative team"
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="Enter your business email"
buttonText="Schedule Consultation"
termsText="We respect your privacy. We'll only use your email to send you relevant marketing insights and updates."
ariaLabel="Contact newsletter section"
/> />
</div> </div>
@@ -218,4 +214,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }