3 Commits

Author SHA1 Message Date
c21fd1097f Merge version_3 into main
Merge version_3 into main
2026-05-24 13:01:33 +00:00
2fbf12ef0e Update src/app/page.tsx 2026-05-24 13:01:30 +00:00
23a890aebc Merge version_2 into main
Merge version_2 into main
2026-05-24 12:59:26 +00:00

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 ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
import FooterCard from '@/components/sections/footer/FooterCard';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
@@ -153,11 +153,16 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactText
<ContactSplitForm
title="Get in Touch"
description="Have a project in mind? Our team is ready to help you bring your ideas to life."
inputs={[
{ name: "name", type: "text", placeholder: "Full Name", required: true },
{ name: "email", type: "email", placeholder: "Email Address", required: true }
]}
textarea={{ name: "message", placeholder: "How can we help?", rows: 4 }}
useInvertedBackground={false}
background={{ variant: "sparkles-gradient" }}
text="Ready to build the future with us? Reach out today."
buttons={[{ text: "Contact Us", href: "#" }]}
imageSrc="http://img.b2bpic.net/free-photo/team-discussing-project-meeting_23-2149174373.jpg"
/>
</div>
@@ -170,4 +175,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}