Update src/app/page.tsx

This commit is contained in:
2026-03-20 18:39:14 +00:00
parent 770db301c0
commit 7b8d90caf6

View File

@@ -8,6 +8,7 @@ import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwe
import TeamCardTwo from "@/components/sections/team/TeamCardTwo";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import HeroOverlay from "@/components/sections/hero/HeroOverlay";
import { Award, BarChart3, Brain, Github, Linkedin, Mail, Sparkles, Target, Users, Zap } from "lucide-react";
export default function LandingPage() {
@@ -148,22 +149,21 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
<HeroOverlay
title="Ready to Elevate Your Brand?"
description="Let's discuss your project. Fill out the form below and our team will reach out within 24 hours."
useInvertedBackground={true}
mediaAnimation="slide-up"
mediaPosition="right"
inputs={[
{ name: "fullName", type: "text", placeholder: "Your Name", required: true },
{ name: "email", type: "email", placeholder: "your@email.com", required: true },
{ name: "company", type: "text", placeholder: "Company Name", required: false },
{ name: "phone", type: "tel", placeholder: "Phone Number", required: false }
tag="Contact Us"
tagIcon={Sparkles}
tagAnimation="slide-up"
buttons={[
{ text: "Get In Touch", href: "#" }
]}
textarea={{ name: "message", placeholder: "Tell us about your project...", rows: 5, required: true }}
buttonText="Send Message"
onSubmit={handleContactSubmit}
ariaLabel="Contact form section"
buttonAnimation="slide-up"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BB1UWtLhV4bdAZs5YAnJqZZmEU/a-professional-portrait-photograph-of-a--1774031217691-d33284a1.png"
imageAlt="Contact section hero image"
showDimOverlay={false}
showBlur={true}
ariaLabel="Contact section"
/>
</div>