Update src/app/contact/page.tsx

This commit is contained in:
2026-03-02 19:09:09 +00:00
parent a43893ea10
commit 2dd838dc28

View File

@@ -36,9 +36,7 @@ export default function ContactPage() {
{ name: "Contact", id: "contact" },
]}
button={{
text: "Get Started",
href: "/contact",
}}
text: "Get Started", href: "/contact"}}
animateOnLoad={true}
/>
</div>
@@ -50,34 +48,20 @@ export default function ContactPage() {
description="Let's discuss how AgentX can help you leverage AI and cutting-edge development to achieve your business goals. Contact us to schedule a consultation with our expert team."
inputs={[
{
name: "fullName",
type: "text",
placeholder: "Your Full Name",
required: true,
name: "fullName", type: "text", placeholder: "Your Full Name", required: true,
},
{
name: "email",
type: "email",
placeholder: "your@email.com",
required: true,
name: "email", type: "email", placeholder: "your@email.com", required: true,
},
{
name: "company",
type: "text",
placeholder: "Company Name",
required: true,
name: "company", type: "text", placeholder: "Company Name", required: true,
},
{
name: "phone",
type: "tel",
placeholder: "+1 (555) 000-0000",
required: false,
name: "phone", type: "tel", placeholder: "+1 (555) 000-0000", required: false,
},
]}
textarea={{
name: "message",
placeholder: "Tell us about your project and goals...",
rows: 5,
name: "message", placeholder: "Tell us about your project and goals...", rows: 5,
required: true,
}}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOz8OV25QJF257mtPMCHoNa3Up/professional-contact-page-illustration-s-1772478339492-e3ee8e49.png"
@@ -123,14 +107,10 @@ export default function ContactPage() {
items: [
{ label: "Twitter", href: "https://twitter.com/agentxtech" },
{
label: "LinkedIn",
href: "https://linkedin.com/company/agentxtech",
},
label: "LinkedIn", href: "https://linkedin.com/company/agentxtech"},
{ label: "GitHub", href: "https://github.com/agentxtech" },
{
label: "Instagram",
href: "https://instagram.com/agentxtech",
},
label: "Instagram", href: "https://instagram.com/agentxtech"},
],
},
]}