Update src/app/page.tsx

This commit is contained in:
2026-06-03 19:15:16 +00:00
parent 5f3d5d2960
commit 9d9c369611

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
import FooterMedia from '@/components/sections/footer/FooterMedia';
@@ -216,15 +216,20 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
<ContactSplit
tag="Get in Touch"
title="Ready to Start Your Project?"
description="Fill out the form below, and our team will get back to you shortly to discuss your vision and how we can bring it to life."
background={{
variant: "sparkles-gradient"}}
text="Let's discuss how Webild Agency can bring your digital vision to life. Contact us today for a free consultation and a personalized quote."
buttons={[
{
text: "Get in Touch", href: "mailto:info@webild.agency"},
]}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/minimalist-abstract-wireframe-architecture_23-2149129531.jpg"
imageAlt="Abstract wireframe architecture representing digital connection"
mediaAnimation="slide-up"
inputPlaceholder="Your Email Address"
buttonText="Send Message"
termsText="By sending a message, you agree to our Privacy Policy and Terms of Service."
onSubmit={(email) => alert(`Message sent from: ${email}`)}
/>
</div>
@@ -275,4 +280,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}